We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 318c623 commit c0bb02eCopy full SHA for c0bb02e
redis-driver/src/test/java/org/jnosql/diana/redis/key/RedisBucketManagerFactoryTest.java
@@ -17,7 +17,6 @@
17
18
import org.jnosql.diana.api.key.BucketManager;
19
import org.jnosql.diana.api.key.BucketManagerFactory;
20
-import org.jnosql.diana.api.key.KeyValueConfiguration;
21
import org.junit.jupiter.api.BeforeEach;
22
import org.junit.jupiter.api.Test;
23
@@ -36,8 +35,7 @@ public class RedisBucketManagerFactoryTest {
36
35
37
@BeforeEach
38
public void setUp() {
39
- KeyValueConfiguration configuration = new RedisConfiguration();
40
- managerFactory = configuration.get();
+ managerFactory = RedisBucketManagerFactorySupplier.INSTANCE.get();;
41
}
42
43
@Test
0 commit comments