Skip to content

Commit

Permalink
Fix typo in KryoCodecTests
Browse files Browse the repository at this point in the history
(cherry picked from commit 5e45b09)
  • Loading branch information
artembilan committed Jul 22, 2020
1 parent 6940b86 commit 9ada785
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -103,7 +103,7 @@ public void testMapSerialization() throws IOException {
map.put("one", 1);
map.put("two", 2);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
codec.encode(map, bos);4
codec.encode(map, bos);
Map<?, ?> m2 = (Map<?, ?>) codec.decode(bos.toByteArray(), HashMap.class);
assertEquals(2, m2.size());
assertEquals(1, m2.get("one"));
Expand Down

0 comments on commit 9ada785

Please sign in to comment.