From 9ada7858df6928de0fdfd4157f7ab4830e85ab75 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 0ba5d69eb6..a06b29259c 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 @@ -103,7 +103,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); assertEquals(2, m2.size()); assertEquals(1, m2.get("one"));