Skip to content

Commit 50b9c7e

Browse files
committed
Noralize formatting
1 parent 13392fe commit 50b9c7e

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

src/test/java/org/apache/commons/cli/bug/BugCLI325Test.java

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,14 @@ public class BugCLI325Test {
3232

3333
@Test
3434
public void testCli325() throws ParseException {
35-
35+
// @formatter:off
3636
final Option option = Option.builder("x")
37-
.hasArgs()
38-
.valueSeparator()
39-
.desc("Multiple arg option with value separator.")
40-
.build();
41-
37+
.hasArgs()
38+
.valueSeparator()
39+
.desc("Multiple arg option with value separator.")
40+
.build();
41+
// @formatter:on
4242
final String[] args = {"-x", "A=a", "B=b"};
43-
4443
final CommandLine cmdLine = DefaultParser.builder().build().parse(new Options().addOption(option), args);
4544
final Properties props = cmdLine.getOptionProperties(option);
4645
assertEquals(2, props.size());

0 commit comments

Comments
 (0)