File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/org/springframework/data/couchbase/domain Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 66
66
/**
67
67
* @author Michael Reiche
68
68
*/
69
- @ SpringJUnitConfig (FluxTest .Config .class )
69
+ @ SpringJUnitConfig (FluxIntegrationTests .Config .class )
70
70
@ IgnoreWhen (clusterTypes = ClusterType .MOCKED )
71
- public class FluxTest extends JavaIntegrationTests {
71
+ public class FluxIntegrationTests extends JavaIntegrationTests {
72
72
73
73
@ BeforeAll
74
74
public static void beforeEverything () {
75
75
/**
76
76
* The couchbaseTemplate inherited from JavaIntegrationTests uses org.springframework.data.couchbase.domain.Config
77
77
* It has typeName = 't' (instead of _class). Don't use it.
78
78
*/
79
- ApplicationContext ac = new AnnotationConfigApplicationContext (FluxTest .Config .class );
79
+ ApplicationContext ac = new AnnotationConfigApplicationContext (FluxIntegrationTests .Config .class );
80
80
couchbaseTemplate = (CouchbaseTemplate ) ac .getBean (BeanNames .COUCHBASE_TEMPLATE );
81
81
reactiveCouchbaseTemplate = (ReactiveCouchbaseTemplate ) ac .getBean (BeanNames .REACTIVE_COUCHBASE_TEMPLATE );
82
82
collection = couchbaseTemplate .getCouchbaseClientFactory ().getBucket ().defaultCollection ();
You can’t perform that action at this time.
0 commit comments