From 5a337fd6c1cc8f0e0cba166a15f7101eedb09aec Mon Sep 17 00:00:00 2001 From: Spencer Gibb Date: Thu, 19 Oct 2017 14:27:58 -0400 Subject: [PATCH] Move test to correct package --- .../{ => hystrix}/HystrixCommandsTests.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) rename spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/{ => hystrix}/HystrixCommandsTests.java (94%) diff --git a/spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/HystrixCommandsTests.java b/spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/hystrix/HystrixCommandsTests.java similarity index 94% rename from spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/HystrixCommandsTests.java rename to spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/hystrix/HystrixCommandsTests.java index cba75473..345b7fc3 100644 --- a/spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/HystrixCommandsTests.java +++ b/spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/hystrix/HystrixCommandsTests.java @@ -14,21 +14,21 @@ * limitations under the License. */ -package org.springframework.cloud.netflix; +package org.springframework.cloud.netflix.hystrix; + +import java.util.List; -import com.netflix.hystrix.exception.HystrixRuntimeException; -import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; -import org.springframework.cloud.netflix.hystrix.HystrixCommands; -import reactor.core.publisher.Flux; -import reactor.core.publisher.Mono; -import java.util.List; +import com.netflix.hystrix.exception.HystrixRuntimeException; import static org.assertj.core.api.Assertions.assertThat; +import reactor.core.publisher.Flux; +import reactor.core.publisher.Mono; + public class HystrixCommandsTests { @Rule