Fix typo in Javadoc.

Closes #2417
This commit is contained in:
断桥烟雨
2022-09-30 17:34:12 +08:00
committed by GitHub
parent d94e9e87bd
commit eadaf9eb2b
5 changed files with 6 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ import org.springframework.data.redis.connection.RedisStringCommands;
class LettuceReactiveClusterStringCommandsIntegrationTests extends LettuceReactiveClusterTestSupport {
@Test // DATAREDIS-525
void mSetNXShouldAddMultipleKeyValueParisWhenMappedToSameSlot() {
void mSetNXShouldAddMultipleKeyValuePairsWhenMappedToSameSlot() {
Map<ByteBuffer, ByteBuffer> map = new LinkedHashMap<>();
map.put(SAME_SLOT_KEY_1_BBUFFER, VALUE_1_BBUFFER);
@@ -47,7 +47,7 @@ class LettuceReactiveClusterStringCommandsIntegrationTests extends LettuceReacti
}
@Test // DATAREDIS-525
void mSetNXShouldNotAddMultipleKeyValueParisWhenAlreadyExitAndMapToSameSlot() {
void mSetNXShouldNotAddMultipleKeyValuePairsWhenAlreadyExitAndMapToSameSlot() {
nativeCommands.set(SAME_SLOT_KEY_2, VALUE_2);