Browse Source

Move test to correct package

pull/6/head
Spencer Gibb 7 years ago
parent
commit
5a337fd6c1
No known key found for this signature in database
GPG Key ID: 7788A47380690861
  1. 14
      spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/hystrix/HystrixCommandsTests.java

14
spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/HystrixCommandsTests.java → spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/hystrix/HystrixCommandsTests.java

@ -14,21 +14,21 @@ @@ -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
Loading…
Cancel
Save