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 9c86e4d + b3b0a5a commit 92dd789Copy full SHA for 92dd789
src/test/java/org/apache/ibatis/reflection/MetaObjectTest.java
@@ -104,14 +104,6 @@ void shouldGetAndSetListItem() {
104
assertEquals("foo", meta.getValue("richList[0]"));
105
}
106
107
- @Test
108
- void shouldSetAndGetSelfListItem() {
109
- RichType rich = new RichType();
110
- MetaObject meta = SystemMetaObject.forObject(rich);
111
- meta.setValue("richList[0]", "foo");
112
- assertEquals("foo", meta.getValue("richList[0]"));
113
- }
114
-
115
@Test
116
void shouldGetAndSetNestedListItem() {
117
RichType rich = new RichType();
0 commit comments