Un-ignore RequestMapping test for handling "" paths

Issue: SPR-15653
This commit is contained in:
Brian Clozel
2017-09-26 10:54:30 +02:00
parent 07b961caa6
commit 3d37c889fa

View File

@@ -26,7 +26,6 @@ import java.util.Set;
import java.util.function.Consumer;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import reactor.core.publisher.Mono;
import reactor.test.StepVerifier;
@@ -112,7 +111,6 @@ public class RequestMappingInfoHandlerMappingTests {
}
@Test
@Ignore
public void getHandlerEmptyPathMatch() throws Exception {
Method expected = on(TestController.class).annot(requestMapping("")).resolveMethod();
ServerWebExchange exchange = get("").toExchange();