Skip to content

Commit c6da8bf

Browse files
committed
Remove comment from test
1 parent aed23a3 commit c6da8bf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spring-integration-core/src/test/java/org/springframework/integration/support/json/JacksonJsonObjectMapperTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,7 @@ public void testJavaTime() throws Exception {
220220

221221
String json = mapper.toJson(data);
222222
assertThat("{\"localDate\":\"2000-01-01T00:00:00\",\"zoneDate\":\"2000-01-01T00:00:00Z\"}").isEqualTo(json);
223-
224-
// 물어보기
223+
225224
TimeData deserialized = mapper.fromJson(json, TimeData.class);
226225
assertThat(deserialized.localDate()).isEqualTo(data.localDate());
227226
assertThat(deserialized.zoneDate().toInstant()).isEqualTo(data.zoneDate().toInstant());

0 commit comments

Comments
 (0)