Skip to content

Commit b13b5a1

Browse files
committed
correcting \n
1 parent 162c24c commit b13b5a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runtime/src/test/java/com/fnproject/fn/runtime/EndToEndInvokeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public void shouldPrintLogFrame() throws Exception {
220220
fn.thenRun(TestFn.class, "fnEcho");
221221
assertThat(fn.getOnlyOutputAsString()).isEqualTo("Hello world!");
222222
// stdout gets redirected to stderr - hence printing out twice
223-
assertThat(fn.getStdErrAsString()).isEqualTo("\ncontainerID=fnIDVal\n\ncontainerID=fnIDVal\n\n");
223+
assertThat(fn.getStdErrAsString()).isEqualTo("\ncontainerID=fnIDVal\n\n\ncontainerID=fnIDVal\n\n");
224224

225225
}
226226

0 commit comments

Comments
 (0)