Browse Source

uncomment

pull/41/head
Spencer Gibb 8 years ago
parent
commit
8100437766
No known key found for this signature in database
GPG Key ID: 7788A47380690861
  1. 4
      src/test/java/org/springframework/cloud/gateway/test/GatewayIntegrationTests.java

4
src/test/java/org/springframework/cloud/gateway/test/GatewayIntegrationTests.java

@ -48,13 +48,13 @@ public class GatewayIntegrationTests { @@ -48,13 +48,13 @@ public class GatewayIntegrationTests {
StepVerifier
.create(result.map(response -> response.headers().asHttpHeaders()))
/*.consumeNextWith(
.consumeNextWith(
httpHeaders -> {
assertThat(httpHeaders.getFirst(HANDLER_MAPPER_HEADER))
.isEqualTo(GatewayPredicateHandlerMapping.class.getSimpleName());
assertThat(httpHeaders.getFirst(ROUTE_ID_HEADER))
.isEqualTo("default_path_to_httpbin");
})*/
})
.expectComplete()
.verify();
}

Loading…
Cancel
Save