Use PathRemainingMatchInfo in RequestPredicates

This commit uses the newly introduced PathRemainingMatchInfo
(316a680577) in path-based
RequestPredicates.

Issue: SPR-15419
This commit is contained in:
Arjen Poutsma
2017-04-19 10:39:51 +02:00
parent 09fcfb510c
commit b897f96e0f
2 changed files with 13 additions and 17 deletions

View File

@@ -16,7 +16,6 @@
package org.springframework.web.reactive.function.server;
import org.junit.Ignore;
import org.junit.Test;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
@@ -71,7 +70,6 @@ public class NestedRouteIntegrationTests extends AbstractRouterFunctionIntegrati
}
@Test
@Ignore("SPR-15419")
public void variables() throws Exception {
ResponseEntity<String> result =
restTemplate.getForEntity("http://localhost:" + port + "/1/2/3", String.class);