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 be0aed3 commit 8658764Copy full SHA for 8658764
src/test/java/org/apache/ibatis/type/CharacterTypeHandlerTest.java
@@ -67,7 +67,7 @@ public void shouldGetResultFromResultSetByPosition() throws Exception {
67
@Test
68
public void shouldGetResultNullFromResultSetByPosition() throws Exception {
69
when(rs.getString(1)).thenReturn(null);
70
- when(rs.wasNull()).thenReturn(false);
+ when(rs.wasNull()).thenReturn(true);
71
assertNull(TYPE_HANDLER.getResult(rs, 1));
72
}
73
0 commit comments