Remove @Ignore on streamResult() test

This test was fixed by previous commit that allows to
JSON encode correctly streams with more than 2 elements.
This commit is contained in:
Sebastien Deleuze
2016-07-04 15:51:44 +02:00
parent 7ed03d01c6
commit 8690464a9b

View File

@@ -25,7 +25,6 @@ import java.util.concurrent.CompletableFuture;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import org.junit.Ignore;
import org.junit.Test;
import org.reactivestreams.Publisher;
import reactor.core.publisher.Flux;
@@ -150,7 +149,6 @@ public class RequestMappingIntegrationTests extends AbstractHttpHandlerIntegrati
}
@Test
@Ignore
public void streamResult() throws Exception {
URI url = new URI("http://localhost:" + port + "/stream-result");
RequestEntity<Void> request = RequestEntity.get(url).build();