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 7bd3cf6 commit bb72a96Copy full SHA for bb72a96
src/test/java/org/apache/ibatis/submitted/lazy_immutable/ImmutablePOJOTest.java
@@ -70,7 +70,7 @@ public void testLoadLazyImmutablePOJO() {
70
71
assertEquals(POJO_ID, pojo.getId());
72
assertNotNull("Description should not be null.", pojo.getDescription());
73
- assertFalse("Description should not be empty.", pojo.getDescription().isEmpty());
+ assertFalse("Description should not be empty.", pojo.getDescription().length() == 0);
74
} finally {
75
session.close();
76
}
0 commit comments