File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
src/test/java/org/apache/ibatis/executor/resultset Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
- * Copyright 2009-2016 the original author or authors.
2
+ * Copyright 2009-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -88,7 +88,6 @@ public void shouldRetainColumnNameCase() throws Exception {
88
88
when (rs .getType ()).thenReturn (ResultSet .TYPE_FORWARD_ONLY );
89
89
when (rs .next ()).thenReturn (true ).thenReturn (false );
90
90
when (rs .getInt ("CoLuMn1" )).thenReturn (100 );
91
- when (rs .wasNull ()).thenReturn (false );
92
91
when (rsmd .getColumnCount ()).thenReturn (1 );
93
92
when (rsmd .getColumnLabel (1 )).thenReturn ("CoLuMn1" );
94
93
when (rsmd .getColumnType (1 )).thenReturn (Types .INTEGER );
You can’t perform that action at this time.
0 commit comments