Skip to content

Commit f6587e2

Browse files
committed
Fix typo in KryoCodecTests
(cherry picked from commit 5e45b09)
1 parent 23f3482 commit f6587e2

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
@@ -106,7 +106,7 @@ public void testMapSerialization() throws IOException {
106106
map.put("one", 1);
107107
map.put("two", 2);
108108
ByteArrayOutputStream bos = new ByteArrayOutputStream();
109-
codec.encode(map, bos);4
109+
codec.encode(map, bos);
110110
Map<?, ?> m2 = (Map<?, ?>) codec.decode(bos.toByteArray(), HashMap.class);
111111
assertThat(m2.size()).isEqualTo(2);
112112
assertThat(m2.get("one")).isEqualTo(1);

0 commit comments

Comments
 (0)