From 00eff4b611ad245520bd21ae914a7150a582c8e3 Mon Sep 17 00:00:00 2001 From: Stephane Maldini Date: Tue, 19 Apr 2016 09:07:23 +0100 Subject: [PATCH] Rename SchedulerGroup to Computations and its methods to avoid confusion --- .../http/server/reactive/AsyncIntegrationTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-web-reactive/src/test/java/org/springframework/http/server/reactive/AsyncIntegrationTests.java b/spring-web-reactive/src/test/java/org/springframework/http/server/reactive/AsyncIntegrationTests.java index 90b5dcfdf1..69658622bc 100644 --- a/spring-web-reactive/src/test/java/org/springframework/http/server/reactive/AsyncIntegrationTests.java +++ b/spring-web-reactive/src/test/java/org/springframework/http/server/reactive/AsyncIntegrationTests.java @@ -23,7 +23,7 @@ import org.hamcrest.Matchers; import org.junit.Test; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; -import reactor.core.publisher.SchedulerGroup; +import reactor.core.publisher.Computations; import reactor.core.scheduler.Scheduler; import reactor.core.scheduler.Timer; @@ -42,7 +42,7 @@ import static org.junit.Assert.assertThat; */ public class AsyncIntegrationTests extends AbstractHttpHandlerIntegrationTests { - private final Scheduler asyncGroup = SchedulerGroup.async(); + private final Scheduler asyncGroup = Computations.parallel(); private final DataBufferAllocator allocator = new DefaultDataBufferAllocator();