We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa7b139 commit feced68Copy full SHA for feced68
1 file changed
src/test/java/software/sham/ssh/MockSshShellTest.java
@@ -66,7 +66,7 @@ public void differentOutputForDifferentInput() throws IOException {
66
67
@Test
68
public void delayedOutput() throws IOException {
69
- server.respondTo("delayedResponder").withOutput("Starting...\n").withDelay(500L).withOutput("Completed.");
+ server.respondTo("delayedResponder").withOutput("Starting..."+System.lineSeparator()).withDelay(500L).withOutput("Completed.");
70
71
runInShell(shell -> {
72
assertEquals("Starting..." + System.lineSeparator() + "Completed.",
0 commit comments