Skip to content

Commit

Permalink
[remkop#1320] fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop authored and MarkoMackic committed Oct 17, 2021
1 parent 44ddb83 commit 33bce97
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/test/java/picocli/Issue1320.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import java.nio.charset.Charset;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.*;

public class Issue1320 {

Expand Down Expand Up @@ -47,15 +47,18 @@ public void run() {
@Test
public void testIssue1320() {
String unmappable = "[abcµ]";
//String unmappable2 = "[abcμ]";
String alt1 = "[abc\u00B5]";
String alt2 = "[abc\u03BC]";

resetLogs();
System.clearProperty(SUN_STDOUT_ENCODING);
System.clearProperty(SUN_STDERR_ENCODING);
fixLogPrintStream(Charset.defaultCharset().name());
assertEquals(CommandLine.ExitCode.OK, new CommandLine(new TestCommand()).execute(unmappable));
assertEquals(systemOutRule.getLog(), unmappable, systemOutRule.getLog());
assertEquals(systemErrRule.getLog(), unmappable, systemErrRule.getLog());
// assertEquals(systemOutRule.getLog(), unmappable, systemOutRule.getLog());
// assertEquals(systemErrRule.getLog(), unmappable, systemErrRule.getLog());
assertTrue(systemOutRule.getLog(), alt1.equals(systemOutRule.getLog()) || alt2.equals(systemOutRule.getLog()));
assertTrue(systemErrRule.getLog(), alt1.equals(systemErrRule.getLog()) || alt2.equals(systemErrRule.getLog()));

resetLogs();
System.setProperty(SUN_STDOUT_ENCODING, CP_437);
Expand Down

0 comments on commit 33bce97

Please sign in to comment.