DATAREDIS-1231 - Polishing.
Add author tag. Fix typos in test method names. Original pull request: #568.
This commit is contained in:
@@ -46,16 +46,16 @@ public interface ClusterConnectionTests {
|
||||
void bitOpShouldThrowExceptionWhenKeysDoNotMapToSameSlot();
|
||||
|
||||
// DATAREDIS-315
|
||||
void blPopShouldPopElementCorectly();
|
||||
void blPopShouldPopElementCorrectly();
|
||||
|
||||
// DATAREDIS-315
|
||||
void blPopShouldPopElementCorectlyWhenKeyOnSameSlot();
|
||||
void blPopShouldPopElementCorrectlyWhenKeyOnSameSlot();
|
||||
|
||||
// DATAREDIS-315
|
||||
void brPopShouldPopElementCorectly();
|
||||
void brPopShouldPopElementCorrectly();
|
||||
|
||||
// DATAREDIS-315
|
||||
void brPopShouldPopElementCorectlyWhenKeyOnSameSlot();
|
||||
void brPopShouldPopElementCorrectlyWhenKeyOnSameSlot();
|
||||
|
||||
// DATAREDIS-315
|
||||
void clientListShouldGetInfosForAllClients();
|
||||
|
||||
@@ -202,7 +202,7 @@ public class JedisClusterConnectionTests implements ClusterConnectionTests {
|
||||
}
|
||||
|
||||
@Test // DATAREDIS-315
|
||||
public void blPopShouldPopElementCorectly() {
|
||||
public void blPopShouldPopElementCorrectly() {
|
||||
|
||||
nativeConnection.lpush(KEY_1_BYTES, VALUE_1_BYTES, VALUE_2_BYTES);
|
||||
nativeConnection.lpush(KEY_2_BYTES, VALUE_3_BYTES);
|
||||
@@ -211,7 +211,7 @@ public class JedisClusterConnectionTests implements ClusterConnectionTests {
|
||||
}
|
||||
|
||||
@Test // DATAREDIS-315
|
||||
public void blPopShouldPopElementCorectlyWhenKeyOnSameSlot() {
|
||||
public void blPopShouldPopElementCorrectlyWhenKeyOnSameSlot() {
|
||||
|
||||
nativeConnection.lpush(SAME_SLOT_KEY_1_BYTES, VALUE_1_BYTES, VALUE_2_BYTES);
|
||||
nativeConnection.lpush(SAME_SLOT_KEY_2_BYTES, VALUE_3_BYTES);
|
||||
@@ -220,7 +220,7 @@ public class JedisClusterConnectionTests implements ClusterConnectionTests {
|
||||
}
|
||||
|
||||
@Test // DATAREDIS-315
|
||||
public void brPopShouldPopElementCorectly() {
|
||||
public void brPopShouldPopElementCorrectly() {
|
||||
|
||||
nativeConnection.lpush(KEY_1_BYTES, VALUE_1_BYTES, VALUE_2_BYTES);
|
||||
nativeConnection.lpush(KEY_2_BYTES, VALUE_3_BYTES);
|
||||
@@ -229,7 +229,7 @@ public class JedisClusterConnectionTests implements ClusterConnectionTests {
|
||||
}
|
||||
|
||||
@Test // DATAREDIS-315
|
||||
public void brPopShouldPopElementCorectlyWhenKeyOnSameSlot() {
|
||||
public void brPopShouldPopElementCorrectlyWhenKeyOnSameSlot() {
|
||||
|
||||
nativeConnection.lpush(SAME_SLOT_KEY_1_BYTES, VALUE_1_BYTES, VALUE_2_BYTES);
|
||||
nativeConnection.lpush(SAME_SLOT_KEY_2_BYTES, VALUE_3_BYTES);
|
||||
|
||||
@@ -234,7 +234,7 @@ public class LettuceClusterConnectionTests implements ClusterConnectionTests {
|
||||
}
|
||||
|
||||
@Test // DATAREDIS-315
|
||||
public void blPopShouldPopElementCorectly() {
|
||||
public void blPopShouldPopElementCorrectly() {
|
||||
|
||||
nativeConnection.lpush(KEY_1, VALUE_1, VALUE_2);
|
||||
nativeConnection.lpush(KEY_2, VALUE_3);
|
||||
@@ -243,7 +243,7 @@ public class LettuceClusterConnectionTests implements ClusterConnectionTests {
|
||||
}
|
||||
|
||||
@Test // DATAREDIS-315
|
||||
public void blPopShouldPopElementCorectlyWhenKeyOnSameSlot() {
|
||||
public void blPopShouldPopElementCorrectlyWhenKeyOnSameSlot() {
|
||||
|
||||
nativeConnection.lpush(SAME_SLOT_KEY_1, VALUE_1, VALUE_2);
|
||||
nativeConnection.lpush(SAME_SLOT_KEY_2, VALUE_3);
|
||||
@@ -252,7 +252,7 @@ public class LettuceClusterConnectionTests implements ClusterConnectionTests {
|
||||
}
|
||||
|
||||
@Test // DATAREDIS-315
|
||||
public void brPopShouldPopElementCorectly() {
|
||||
public void brPopShouldPopElementCorrectly() {
|
||||
|
||||
nativeConnection.lpush(KEY_1, VALUE_1, VALUE_2);
|
||||
nativeConnection.lpush(KEY_2, VALUE_3);
|
||||
@@ -261,7 +261,7 @@ public class LettuceClusterConnectionTests implements ClusterConnectionTests {
|
||||
}
|
||||
|
||||
@Test // DATAREDIS-315
|
||||
public void brPopShouldPopElementCorectlyWhenKeyOnSameSlot() {
|
||||
public void brPopShouldPopElementCorrectlyWhenKeyOnSameSlot() {
|
||||
|
||||
nativeConnection.lpush(SAME_SLOT_KEY_1, VALUE_1, VALUE_2);
|
||||
nativeConnection.lpush(SAME_SLOT_KEY_2, VALUE_3);
|
||||
|
||||
Reference in New Issue
Block a user