Skip to content

Commit c16ce24

Browse files
committed
Minor improvement to testLs() (added the arg name for block-size)
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/branches/cli-1.x@681076 13f79535-47bb-0310-9956-ffa450edef68
1 parent 6dd22b7 commit c16ce24

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ public void testLs() throws Exception {
4545
options.addOption( "b", "escape", false, "print octal escapes for nongraphic characters" );
4646
options.addOption( OptionBuilder.withLongOpt( "block-size" )
4747
.withDescription( "use SIZE-byte blocks" )
48-
.withValueSeparator( '=' )
4948
.hasArg()
49+
.withArgName("SIZE")
5050
.create() );
5151
options.addOption( "B", "ignore-backups", false, "do not list implied entried ending with ~");
5252
options.addOption( "c", false, "with -lt: sort by, and show, ctime (time of last modification of file status information) with -l:show ctime and sort by name otherwise: sort by ctime" );

0 commit comments

Comments
 (0)