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 0b6a04d commit f3d4f12Copy full SHA for f3d4f12
src/test/java/org/apache/ibatis/submitted/includes/IncludeTest.java
@@ -37,8 +37,8 @@ public void testIncludes() throws Exception {
37
38
final SqlSession sqlSession = sqlMapper.openSession();
39
try {
40
- final int result = sqlSession.selectOne("org.apache.ibatis.submitted.includes.mapper.selectWithProperty");
41
- Assert.assertEquals(1, result);
+ final Integer result = sqlSession.selectOne("org.apache.ibatis.submitted.includes.mapper.selectWithProperty");
+ Assert.assertEquals(Integer.valueOf(1), result);
42
} finally {
43
sqlSession.close();
44
}
0 commit comments