Skip to content

Commit

Permalink
[CONJ-388] correcting case
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Dec 14, 2016
1 parent 5707b2a commit 44c5f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/org/mariadb/jdbc/DateTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ public void getZeroDateString() throws SQLException {
Assert.assertEquals(null, resultSet.getString(1));
}

ResultSet resultSet = statement.executeQuery("SELECT * from zerotimestamp");
ResultSet resultSet = statement.executeQuery("SELECT * from zeroTimestamp");
Assert.assertTrue(resultSet.next());
Assert.assertEquals(null, resultSet.getDate(1));
Assert.assertTrue(resultSet.getString(1).contains("0000-00-00 00:00:00"));
Expand Down

0 comments on commit 44c5f0f

Please sign in to comment.