Author: andham Date: Thu Feb 21 13:54:13 2013 New Revision: 1448639 URL: http://svn.apache.org/r1448639 Log: Fixed typo
Modified: maven/plugins/trunk/maven-invoker-plugin/src/it/invocation-project/verify.bsh Modified: maven/plugins/trunk/maven-invoker-plugin/src/it/invocation-project/verify.bsh URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/src/it/invocation-project/verify.bsh?rev=1448639&r1=1448638&r2=1448639&view=diff ============================================================================== --- maven/plugins/trunk/maven-invoker-plugin/src/it/invocation-project/verify.bsh (original) +++ maven/plugins/trunk/maven-invoker-plugin/src/it/invocation-project/verify.bsh Thu Feb 21 13:54:13 2013 @@ -9,7 +9,7 @@ String[] unexpectedPaths = for ( String path : unexpectedPaths ) { File file = new File( new File( basedir, "target/it/project" ), path); - System.out.println( "Creating for absence of: " + file ); + System.out.println( "Checking for absence of: " + file ); if ( file.exists() ) { throw new IOException( "Unexpected path found: " + file ); @@ -25,7 +25,7 @@ String[] expectedPaths = for ( String path : expectedPaths ) { File file = new File( new File( basedir, "target/it/project" ), path); - System.out.println( "Creating for existence of: " + file ); + System.out.println( "Checking for existence of: " + file ); if ( !file.exists() ) { throw new IOException( "Expected path not found: " + file );