File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
spring-web-reactive/src/test/java/org/springframework/web/reactive/result/method/annotation Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 3232import org .springframework .http .codec .SseEvent ;
3333import org .springframework .http .server .reactive .AbstractHttpHandlerIntegrationTests ;
3434import org .springframework .http .server .reactive .HttpHandler ;
35- import org .springframework .http .server .reactive .bootstrap .JettyHttpServer ;
3635import org .springframework .web .bind .annotation .RequestMapping ;
3736import org .springframework .web .bind .annotation .RestController ;
3837import org .springframework .web .client .reactive .WebClient ;
3938import org .springframework .web .reactive .DispatcherHandler ;
4039import org .springframework .web .reactive .config .WebReactiveConfiguration ;
4140import org .springframework .web .server .adapter .WebHttpHandlerBuilder ;
4241
43- import static org .junit .Assume .assumeFalse ;
4442import static org .springframework .web .client .reactive .ClientWebRequestBuilders .get ;
4543import static org .springframework .web .client .reactive .ResponseExtractors .bodyStream ;
4644
@@ -53,16 +51,14 @@ public class SseIntegrationTests extends AbstractHttpHandlerIntegrationTests {
5351
5452 private WebClient webClient ;
5553
54+
5655 @ Before
5756 public void setup () throws Exception {
5857 super .setup ();
59-
60- // See https://github.com/eclipse/jetty.project/issues/730
61- assumeFalse (server instanceof JettyHttpServer );
62-
6358 this .webClient = new WebClient (new ReactorClientHttpConnector ());
6459 }
6560
61+
6662 @ Override
6763 protected HttpHandler createHttpHandler () {
6864 this .wac = new AnnotationConfigApplicationContext ();
You can’t perform that action at this time.
0 commit comments