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 8efe817cd3
commit fad2d2a67c
1 changed files with 1 additions and 0 deletions

View File

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