From fcdba0a9fa3ed03897165bdb7efd3edc4d3607d6 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Wed, 22 Jul 2020 12:33:24 -0400 Subject: [PATCH] Fix typo in KryoCodecTests (cherry picked from commit 5e45b09cd5a0e7f7a22a99c697d10613585ee05d) --- .../springframework/integration/codec/kryo/KryoCodecTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-integration-core/src/test/java/org/springframework/integration/codec/kryo/KryoCodecTests.java b/spring-integration-core/src/test/java/org/springframework/integration/codec/kryo/KryoCodecTests.java index bfe28cba61..72de6ea794 100644 --- a/spring-integration-core/src/test/java/org/springframework/integration/codec/kryo/KryoCodecTests.java +++ b/spring-integration-core/src/test/java/org/springframework/integration/codec/kryo/KryoCodecTests.java @@ -106,7 +106,7 @@ public class KryoCodecTests { 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); assertThat(m2.size()).isEqualTo(2); assertThat(m2.get("one")).isEqualTo(1);