Skip to content

Commit ac8c6f8

Browse files
committed
Move test from under tofix
1 parent 8ee4131 commit ac8c6f8

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/test/java/tools/jackson/databind/tofix/MapFormatShape5405Test.java renamed to src/test/java/tools/jackson/databind/format/MapFormatShape5405Test.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package tools.jackson.databind.tofix;
1+
package tools.jackson.databind.format;
22

33
import java.util.*;
44

@@ -61,9 +61,9 @@ public Bean5405Override(int value) {
6161
}
6262

6363
/*
64-
/**********************************************************
64+
/**********************************************************************
6565
/* Test methods, serialization
66-
/**********************************************************
66+
/**********************************************************************
6767
*/
6868

6969
private final ObjectMapper MAPPER = newJsonMapper();
@@ -72,7 +72,8 @@ public Bean5405Override(int value) {
7272
public void testSerializeAsPOJOViaProperty() throws Exception
7373
{
7474
String result = MAPPER.writeValueAsString(new Bean5405Container(1,0,3));
75-
assertEquals(a2q("{'a':{'extra':13,'empty':false},'c':{'extra':13,'empty':false}}"),
75+
assertEquals(a2q(
76+
"{'a':{'extra':13,'empty':false},'c':{'extra':13,'empty':false}}"),
7677
result);
7778
}
7879

0 commit comments

Comments
 (0)