From 35c72238cbe1ff6c7380786b323fa1841adcb62f Mon Sep 17 00:00:00 2001 From: David Kelly Date: Thu, 15 Aug 2019 12:31:46 -0700 Subject: [PATCH] DATACOUCH-475 Couchbase builds failing. There was an integration test which wasn't named properly, and so it was running with regular tests. This left the container around, and all subsequent integration tests failed. Simple fix. --- ...activePlaceTests.java => ReactivePlaceIntegrationTests.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/test/java/org/springframework/data/couchbase/repository/{ReactivePlaceTests.java => ReactivePlaceIntegrationTests.java} (97%) diff --git a/src/test/java/org/springframework/data/couchbase/repository/ReactivePlaceTests.java b/src/test/java/org/springframework/data/couchbase/repository/ReactivePlaceIntegrationTests.java similarity index 97% rename from src/test/java/org/springframework/data/couchbase/repository/ReactivePlaceTests.java rename to src/test/java/org/springframework/data/couchbase/repository/ReactivePlaceIntegrationTests.java index 77cdd7b5..35cade11 100644 --- a/src/test/java/org/springframework/data/couchbase/repository/ReactivePlaceTests.java +++ b/src/test/java/org/springframework/data/couchbase/repository/ReactivePlaceIntegrationTests.java @@ -26,7 +26,7 @@ import static org.springframework.data.couchbase.CouchbaseTestHelper.getReposito @RunWith(ContainerResourceRunner.class) @ContextConfiguration(classes = ReactiveIntegrationTestApplicationConfig.class) @TestExecutionListeners(SimpleReactiveCouchbaseRepositoryListener.class) -public class ReactivePlaceTests { +public class ReactivePlaceIntegrationTests { @Rule public TestName testName = new TestName();