Skip to content

Commit

Permalink
Add fast manual iso date parser.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcGuiot committed Feb 6, 2024
1 parent ba37072 commit 549f40d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/org/globsframework/model/KeyBuilderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public void testReturnsAnOptimizedStructureForASingleKeyType() throws Exception
values.put(DummyObject.NAME, "a");
Key key = KeyBuilder.createFromValues(DummyObject.TYPE, values);
assertTrue(key instanceof SingleFieldKey);
assertEquals(new Integer(2), key.get(DummyObject.ID));
assertEquals(Integer.valueOf(2), key.get(DummyObject.ID));
try {
key.get(DummyObject.NAME);
}
Expand Down

0 comments on commit 549f40d

Please sign in to comment.