Skip to content

Commit 4d0ecf3

Browse files
committed
Rename FluxTest to FluxIntegrationTests as it requires a server.
Closes #1474.
1 parent dbd4313 commit 4d0ecf3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/org/springframework/data/couchbase/domain/FluxTest.java renamed to src/test/java/org/springframework/data/couchbase/domain/FluxIntegrationTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,17 @@
6666
/**
6767
* @author Michael Reiche
6868
*/
69-
@SpringJUnitConfig(FluxTest.Config.class)
69+
@SpringJUnitConfig(FluxIntegrationTests.Config.class)
7070
@IgnoreWhen(clusterTypes = ClusterType.MOCKED)
71-
public class FluxTest extends JavaIntegrationTests {
71+
public class FluxIntegrationTests extends JavaIntegrationTests {
7272

7373
@BeforeAll
7474
public static void beforeEverything() {
7575
/**
7676
* The couchbaseTemplate inherited from JavaIntegrationTests uses org.springframework.data.couchbase.domain.Config
7777
* It has typeName = 't' (instead of _class). Don't use it.
7878
*/
79-
ApplicationContext ac = new AnnotationConfigApplicationContext(FluxTest.Config.class);
79+
ApplicationContext ac = new AnnotationConfigApplicationContext(FluxIntegrationTests.Config.class);
8080
couchbaseTemplate = (CouchbaseTemplate) ac.getBean(BeanNames.COUCHBASE_TEMPLATE);
8181
reactiveCouchbaseTemplate = (ReactiveCouchbaseTemplate) ac.getBean(BeanNames.REACTIVE_COUCHBASE_TEMPLATE);
8282
collection = couchbaseTemplate.getCouchbaseClientFactory().getBucket().defaultCollection();

0 commit comments

Comments
 (0)