sync reactor-core scheduler

master
Stephane Maldini 9 years ago
parent 7ab92cfccf
commit 52292cafae
  1. 4
      spring-web-reactive/src/test/java/org/springframework/http/server/reactive/AsyncIntegrationTests.java

@ -25,7 +25,7 @@ import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;
import org.junit.runners.Parameterized; import org.junit.runners.Parameterized;
import reactor.core.publisher.Mono; import reactor.core.publisher.Mono;
import reactor.core.publisher.ProcessorGroup; import reactor.core.publisher.SchedulerGroup;
import reactor.core.timer.Timer; import reactor.core.timer.Timer;
import reactor.rx.Stream; import reactor.rx.Stream;
@ -50,7 +50,7 @@ import static org.junit.Assert.assertThat;
@RunWith(Parameterized.class) @RunWith(Parameterized.class)
public class AsyncIntegrationTests { public class AsyncIntegrationTests {
private final ProcessorGroup asyncGroup = ProcessorGroup.async(); private final SchedulerGroup asyncGroup = SchedulerGroup.async();
private final DataBufferAllocator allocator = new DefaultDataBufferAllocator(); private final DataBufferAllocator allocator = new DefaultDataBufferAllocator();

Loading…
Cancel
Save