Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Sep 8, 2024
1 parent 05882ef commit 16035ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/client/test/src/mill/main/client/ClientTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void checkStringRoundTrip(String example) throws Exception{
Util.writeString(o, example);
ByteArrayInputStream i = new ByteArrayInputStream(o.toByteArray());
String s = Util.readString(i);
assertEquals(example, s, "String as bytes: ["+example.getBytes()+"] differs from expected: ["+s.getBytes()+"]");
assertEquals(example, s);
assertEquals(i.available(), 0);
}

Expand Down

0 comments on commit 16035ce

Please sign in to comment.