BAEL-3603 Add line separator to preserve lines read

This commit is contained in:
Roger Yates
2020-03-12 06:12:42 +10:00
parent 4e1d7e7850
commit 0a79578764

View File

@@ -40,6 +40,7 @@ public class BlockingClientUnitTest {
for (String line; (line = reader.readLine()) != null; ) {
ourStore.append(line);
ourStore.append(System.lineSeparator());
}
}