Skip to content

Commit b75d893

Browse files
committed
fix merge
1 parent 34893e4 commit b75d893

2 files changed

Lines changed: 0 additions & 26 deletions

File tree

src/test/java/picoded/dstack/redis/Redis_KeyLongMap_test.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,15 @@
66

77
import java.util.concurrent.ThreadLocalRandom;
88

9-
<<<<<<< HEAD
109
public class Redis_KeyLongMap_test extends StructSimple_KeyLongMap_test {
11-
=======
12-
public class RedisKeyLongMap_test extends StructSimple_KeyLongMap_test {
13-
>>>>>>> ba5858da6960b26e62926ee51c1e3f547b58774f
1410
// Redis stack instance
1511
protected static volatile RedisStack instance = null;
1612

1713
/// Implementation constructor
1814
public KeyLongMap implementationConstructor() {
1915

2016
// Initialize server
21-
<<<<<<< HEAD
2217
synchronized (Redis_KeyLongMap_test.class) {
23-
=======
24-
synchronized (RedisKeyLongMap_test.class) {
25-
>>>>>>> ba5858da6960b26e62926ee51c1e3f547b58774f
2618
if (instance == null) {
2719
// The default config uses "172.17.0.1" (default docker bridge address)
2820
// and port 6379 (default redis port)
@@ -42,12 +34,6 @@ public KeyLongMap implementationConstructor() {
4234
}
4335
}
4436
// Load the KeyLongMap
45-
<<<<<<< HEAD
4637
return instance.keyLongMap(DStackTestConfig.randomTablePrefix());
4738
}
4839
}
49-
=======
50-
return instance.KeyLongMap(DStackTestConfig.randomTablePrefix());
51-
}
52-
}
53-
>>>>>>> ba5858da6960b26e62926ee51c1e3f547b58774f

src/test/java/picoded/dstack/redis/Redis_KeyValueMap_test.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,15 @@
77
import java.util.concurrent.ThreadLocalRandom;
88

99

10-
<<<<<<< HEAD
1110
public class Redis_KeyValueMap_test extends StructSimple_KeyValueMap_test {
12-
=======
13-
public class RedisKeyValueMap_test extends StructSimple_KeyValueMap_test {
14-
>>>>>>> ba5858da6960b26e62926ee51c1e3f547b58774f
1511
// Redis stack instance
1612
protected static volatile RedisStack instance = null;
1713

1814
/// Implementation constructor
1915
public KeyValueMap implementationConstructor() {
2016

2117
// Initialize server
22-
<<<<<<< HEAD
2318
synchronized (Redis_KeyValueMap_test.class) {
24-
=======
25-
synchronized (RedisKeyValueMap_test.class) {
26-
>>>>>>> ba5858da6960b26e62926ee51c1e3f547b58774f
2719
if (instance == null) {
2820
// The default config uses "172.17.0.1" (default docker bridge address)
2921
// and port 6379 (default redis port)
@@ -45,8 +37,4 @@ public KeyValueMap implementationConstructor() {
4537
// Load the KeyValueMap
4638
return instance.keyValueMap(DStackTestConfig.randomTablePrefix());
4739
}
48-
<<<<<<< HEAD
4940
}
50-
=======
51-
}
52-
>>>>>>> ba5858da6960b26e62926ee51c1e3f547b58774f

0 commit comments

Comments
 (0)