Skip to content

Commit 214217b

Browse files
committed
code style fix
1 parent 0503115 commit 214217b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msgpack-jackson/src/test/java/org/msgpack/jackson/dataformat/MessagePackDataformatForPojoTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ public void testSerializationWithoutSchema()
111111
throws IOException
112112
{
113113
ObjectMapper objectMapper = new ObjectMapper(factory); // to not affect shared objectMapper state
114-
UsingCustomConstructorPojo orig = new UsingCustomConstructorPojo("komamitsu", 55);
115114
objectMapper.setAnnotationIntrospector(new JsonArrayFormat());
115+
UsingCustomConstructorPojo orig = new UsingCustomConstructorPojo("komamitsu", 55);
116116
byte[] bytes = objectMapper.writeValueAsBytes(orig);
117117
String scheme = new String(bytes, Charset.forName("UTF-8"));
118118
assertThat(scheme, not(containsString("name")));

0 commit comments

Comments
 (0)