Skip to content

Commit 76d1fec

Browse files
committed
...
1 parent 74accd6 commit 76d1fec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/fasterxml/jackson/databind/deser/creators/broken/Pre212StaticFactoryImplicitBindingTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ static final class JsonSimpleWrapper2895<T> {
7777
}
7878

7979
static class Account2895 {
80-
private long id;
80+
private long id;
8181
private String name;
8282

8383
@JsonCreator
@@ -109,7 +109,7 @@ public void testIssue2895() throws Exception
109109
SimpleWrapper2895<Account2895> wrapper = MAPPER
110110
.readerFor(new TypeReference<SimpleWrapper2895<Account2895>>() {})
111111
.readValue("{\"object\":{\"id\":1,\"name\":\"name1\"}}");
112-
112+
113113
Account2895 account = wrapper.value;
114114
assertEquals(1, account.getId());
115115
assertEquals("name1", account.getName());

0 commit comments

Comments
 (0)