Skip to content

Commit 9ada785

Browse files
committed
Fix typo in KryoCodecTests
(cherry picked from commit 5e45b09)
1 parent 6940b86 commit 9ada785

File tree

1 file changed

+1
-1
lines changed
  • spring-integration-core/src/test/java/org/springframework/integration/codec/kryo

1 file changed

+1
-1
lines changed

spring-integration-core/src/test/java/org/springframework/integration/codec/kryo/KryoCodecTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public void testMapSerialization() throws IOException {
103103
map.put("one", 1);
104104
map.put("two", 2);
105105
ByteArrayOutputStream bos = new ByteArrayOutputStream();
106-
codec.encode(map, bos);4
106+
codec.encode(map, bos);
107107
Map<?, ?> m2 = (Map<?, ?>) codec.decode(bos.toByteArray(), HashMap.class);
108108
assertEquals(2, m2.size());
109109
assertEquals(1, m2.get("one"));

0 commit comments

Comments
 (0)