File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
maven-release-manager/src/test/java/org/apache/maven/shared/release/exec Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 22
22
import org .codehaus .plexus .PlexusTestCase ;
23
23
import org .codehaus .plexus .util .cli .Commandline ;
24
24
25
+ import java .util .Locale ;
26
+
25
27
/**
26
28
* Test the command line factory.
27
29
*
@@ -46,7 +48,8 @@ public void testCreation()
46
48
{
47
49
Commandline cl = factory .createCommandLine ( "exec" );
48
50
49
- assertEquals ( "Check executable" , "exec" , cl .getExecutable () );
51
+ String executable = cl .getExecutable ();
52
+ assertTrue ( "Check executable " + executable , executable .contains ("exec" ) );
50
53
assertNotNull ( "Check environment" , cl .getEnvironmentVariables () );
51
54
assertFalse ( "Check environment" , cl .getEnvironmentVariables ().length == 0 );
52
55
}
Original file line number Diff line number Diff line change 202
202
<dependency >
203
203
<groupId >org.xmlunit</groupId >
204
204
<artifactId >xmlunit-core</artifactId >
205
- <version >2.5.1 </version >
205
+ <version >2.6.4 </version >
206
206
</dependency >
207
207
</dependencies >
208
208
</dependencyManagement >
You can’t perform that action at this time.
0 commit comments