Revert commit 0f38c28e91
The fix is not how the issue needs to be addressed. See gh-34121
This commit is contained in:
@@ -19,6 +19,7 @@ package org.springframework.test.web.servlet.samples.spr;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.test.context.junit.jupiter.web.SpringJUnitWebConfig;
|
||||
@@ -56,6 +57,7 @@ class ServletRequestDataBinderIntegrationTests {
|
||||
.andExpect(content().string("valueB"));
|
||||
}
|
||||
|
||||
@Disabled("see gh-34121")
|
||||
@Test // gh-34121
|
||||
void postArrayWithEmptyIndex(WebApplicationContext wac) throws Exception {
|
||||
MockMvc mockMvc = webAppContextSetup(wac).build();
|
||||
@@ -86,6 +88,7 @@ class ServletRequestDataBinderIntegrationTests {
|
||||
.andExpect(content().string("valueB"));
|
||||
}
|
||||
|
||||
@Disabled("see gh-34121")
|
||||
@Test // gh-34121
|
||||
void postListWithEmptyIndex(WebApplicationContext wac) throws Exception {
|
||||
MockMvc mockMvc = webAppContextSetup(wac).build();
|
||||
|
||||
Reference in New Issue
Block a user