Browse Source

Disables ServerMvcIntegrationTests.formUrlencodedWorks()

See gh-3094
pull/3096/head
sgibb 12 months ago
parent
commit
5a9b234b7d
No known key found for this signature in database
GPG Key ID: 7788A47380690861
  1. 2
      spring-cloud-gateway-server-mvc/src/test/java/org/springframework/cloud/gateway/server/mvc/ServerMvcIntegrationTests.java

2
spring-cloud-gateway-server-mvc/src/test/java/org/springframework/cloud/gateway/server/mvc/ServerMvcIntegrationTests.java

@ -32,6 +32,7 @@ import io.github.bucket4j.distributed.proxy.AsyncProxyManager; @@ -32,6 +32,7 @@ import io.github.bucket4j.distributed.proxy.AsyncProxyManager;
import io.github.bucket4j.distributed.remote.RemoteBucketState;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
@ -361,6 +362,7 @@ public class ServerMvcIntegrationTests { @@ -361,6 +362,7 @@ public class ServerMvcIntegrationTests {
StandardCharsets.UTF_8);
@Test
@Disabled // FIXME: https://github.com/spring-cloud/spring-cloud-gateway/issues/3094
void formUrlencodedWorks() {
LinkedMultiValueMap<String, String> formData = new LinkedMultiValueMap<>();
formData.add("foo", "bar");

Loading…
Cancel
Save