sync reactor-core scheduler

This commit is contained in:
Stephane Maldini 2016-02-04 03:08:26 +00:00
parent 7ab92cfccf
commit 52292cafae
1 changed files with 2 additions and 2 deletions

View File

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