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 177665d commit 5d0d25bCopy full SHA for 5d0d25b
src/test/java/org/apache/ibatis/submitted/foreach_map/ForEachMapTest.java
@@ -103,8 +103,8 @@ public void shouldSubstituteIndexWithKey() throws Exception {
103
MapParam mapParam = new MapParam();
104
mapParam.getMap().put("col_a", 22);
105
mapParam.getMap().put("col_b", 222);
106
- int count = sqlSession.selectOne("sel_key_cols", mapParam);
107
- Assert.assertEquals(1, count);
+ Integer count = sqlSession.selectOne("sel_key_cols", mapParam);
+ Assert.assertEquals(Integer.valueOf(1), count);
108
}
109
110
private SqlSession sqlSession;
0 commit comments