Skip to content

Commit 127ae07

Browse files
Change order of timestamp assert to fit expected -> actual order
1 parent ab3f795 commit 127ae07

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/java/org/javawebstack/orm/test/TypesTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ public void testFields() throws ORMConfigurationException {
6060
assertEquals(model.exampleLong, 999999999999999999L);
6161
assertEquals(model.exampleLongPrimitive, 999999999999999999L);
6262

63-
assertEquals(timestamp.getTime() / 1000, model.timestampTest.getTime() / 1000);
63+
64+
assertEquals(model.timestampTest.getTime() / 1000, timestamp.getTime() / 1000);
65+
66+
assertEquals(model.exampleCharPrimitive, 'C');
6467

6568
model.exampleNull = "Text";
6669
model.save();

0 commit comments

Comments
 (0)