Skip to content

Commit 0f964c6

Browse files
committed
Fixing test message
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/branches/cli-1.x@741427 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8c32392 commit 0f964c6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/org/apache/commons/cli/PatternOptionBuilderTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
import java.io.File;
2121
import java.net.URL;
2222
import java.util.Calendar;
23-
import java.util.Vector;
2423
import java.util.Date;
24+
import java.util.Vector;
2525

2626
import junit.framework.TestCase;
2727

@@ -71,7 +71,7 @@ public void testSimplePattern() throws Exception
7171

7272
// DATES NOT SUPPORTED YET
7373
try {
74-
assertEquals("number flag z", new Date(1023400137276L), line.getOptionObject('z'));
74+
assertEquals("date flag z", new Date(1023400137276L), line.getOptionObject('z'));
7575
fail("Date is not supported yet, should have failed");
7676
} catch(UnsupportedOperationException uoe) {
7777
// expected

0 commit comments

Comments
 (0)