Fix assertion in BeanWrapperAutoGrowingTests
See gh-32176
This commit is contained in:
parent
00577ed80a
commit
615973cce4
|
|
@ -196,7 +196,7 @@ class BeanWrapperAutoGrowingTests {
|
|||
@Test @Disabled // gh-32154
|
||||
void setPropertyValueAutoGrowNestedNestedMapWithinMap() {
|
||||
wrapper.setPropertyValue("nestedNestedMap[A][B][C]", new Bean());
|
||||
assertThat(bean.getNestedNestedMap().get("A").get("B").get("C)")).isInstanceOf(Bean.class);
|
||||
assertThat(bean.getNestedNestedMap().get("A").get("B").get("C")).isInstanceOf(Bean.class);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue