Fix assertion in BeanWrapperAutoGrowingTests

See gh-32176
This commit is contained in:
Yanming Zhou 2024-02-01 16:20:13 +08:00 committed by Stéphane Nicoll
parent 00577ed80a
commit 615973cce4
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}