Skip to content

Commit

Permalink
DATAREDIS-1231 - Polishing.
Browse files Browse the repository at this point in the history
Add author tag.

Fix typos in test method names.

Original pull request: #568.
  • Loading branch information
mp911de committed Oct 13, 2020
1 parent 46fe03e commit 5912578
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
Expand Up @@ -31,6 +31,7 @@
/**
* @author Christoph Strobl
* @author Mark Paluch
* @author Jot Zhao
* @since 2.0
*/
@RequiredArgsConstructor
Expand Down
Expand Up @@ -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();
Expand Down
Expand Up @@ -202,7 +202,7 @@ public void bitOpShouldWorkCorrectly() {
}

@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);
Expand All @@ -211,7 +211,7 @@ public void blPopShouldPopElementCorectly() {
}

@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);
Expand All @@ -220,7 +220,7 @@ public void blPopShouldPopElementCorectlyWhenKeyOnSameSlot() {
}

@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);
Expand All @@ -229,7 +229,7 @@ public void brPopShouldPopElementCorectly() {
}

@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);
Expand Down
Expand Up @@ -234,7 +234,7 @@ public void bitOpShouldWorkCorrectly() {
}

@Test // DATAREDIS-315
public void blPopShouldPopElementCorectly() {
public void blPopShouldPopElementCorrectly() {

nativeConnection.lpush(KEY_1, VALUE_1, VALUE_2);
nativeConnection.lpush(KEY_2, VALUE_3);
Expand All @@ -243,7 +243,7 @@ public void blPopShouldPopElementCorectly() {
}

@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);
Expand All @@ -252,7 +252,7 @@ public void blPopShouldPopElementCorectlyWhenKeyOnSameSlot() {
}

@Test // DATAREDIS-315
public void brPopShouldPopElementCorectly() {
public void brPopShouldPopElementCorrectly() {

nativeConnection.lpush(KEY_1, VALUE_1, VALUE_2);
nativeConnection.lpush(KEY_2, VALUE_3);
Expand All @@ -261,7 +261,7 @@ public void brPopShouldPopElementCorectly() {
}

@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);
Expand Down

0 comments on commit 5912578

Please sign in to comment.