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.
2 parents 46c9e07 + 8658764 commit 01736c9Copy full SHA for 01736c9
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