Skip to content

Commit

Permalink
[FLINK-3423] [tests] Fixed ExternalProcessRunnerTest on Windows
Browse files Browse the repository at this point in the history
This closes apache#1650
  • Loading branch information
supermegaciaccount authored and StephanEwen committed Feb 18, 2016
1 parent 41b826b commit 06e3dd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void testPrintToErr() throws Exception {
int result = runner.run();

assertEquals(0, result);
assertEquals(runner.getErrorOutput().toString(), "Hello process hello42\n");
assertEquals(runner.getErrorOutput().toString(), "Hello process hello42" + System.lineSeparator());
}

@Test
Expand Down

0 comments on commit 06e3dd1

Please sign in to comment.