We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eb2b96 commit 1933b45Copy full SHA for 1933b45
activejdbc/src/test/java/org/javalite/activejdbc/ModelTest.java
@@ -517,8 +517,7 @@ public void shouldGenerateValidUpdateSQLWithTime() {
517
the(Base.exec(updateSql)).shouldBeEqual(1);
518
519
alarm = Alarm.findById(alarm.getId());
520
- System.out.println("ALARM: " + alarm.get("alarm_time").getClass() + " " + alarm.get("alarm_time"));
521
- the(alarm.getTime("alarm_time").toString()).shouldBeEqual(t);
+ the(alarm.getString("alarm_time").startsWith(t)).shouldBeTrue();
522
}
523
524
@Test(expected = NoSuchElementException.class)
0 commit comments