output the actual check and target values for comparison.

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@675624 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2008-07-10 15:58:18 +00:00
parent d61c2202d7
commit bc318133a6
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public class PropertyInterpolationMojo
if ( !value.equals( targetValue ) )
{
throw new MojoExecutionException( "Property value of 'myDirectory': " + value + " should equal project build directory: " + project.getBuild().getDirectory() + " + '/foo'" );
throw new MojoExecutionException( "Property value of 'myDirectory': " + value + " should equal the 'foo' subpath of the project build directory: " + targetValue );
}
}
}