From 480180be2dca7a504d8e12d431858ebcd4e13e99 Mon Sep 17 00:00:00 2001 From: Thach Le Date: Mon, 30 Sep 2024 21:58:43 +0700 Subject: [PATCH] Revert format --- .../unified/UnifiedJedisStreamCommandsTest.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/test/java/redis/clients/jedis/mocked/unified/UnifiedJedisStreamCommandsTest.java b/src/test/java/redis/clients/jedis/mocked/unified/UnifiedJedisStreamCommandsTest.java index 19d31117b1b..404476788fe 100644 --- a/src/test/java/redis/clients/jedis/mocked/unified/UnifiedJedisStreamCommandsTest.java +++ b/src/test/java/redis/clients/jedis/mocked/unified/UnifiedJedisStreamCommandsTest.java @@ -734,7 +734,7 @@ public void testXpending() { String key = "mystream"; String groupName = "mygroup"; StreamPendingSummary expectedSummary = new StreamPendingSummary(10L, - new StreamEntryID("0-0"), new StreamEntryID("0-1"), Collections.emptyMap()); + new StreamEntryID("0-0"), new StreamEntryID("0-1"), Collections.emptyMap()); when(commandObjects.xpending(key, groupName)).thenReturn(streamPendingSummaryCommandObject); when(commandExecutor.executeCommand(streamPendingSummaryCommandObject)).thenReturn(expectedSummary); @@ -827,8 +827,8 @@ public void testXrangeBinary() { byte[] start = "0-0".getBytes(); byte[] end = "+".getBytes(); List expectedRange = Arrays.asList( - new StreamEntry(new StreamEntryID("0-0"), Collections.singletonMap("field1", "value1")), - new StreamEntry(new StreamEntryID("0-1"), Collections.singletonMap("field2", "value2"))); + new StreamEntry(new StreamEntryID("0-0"), Collections.singletonMap("field1", "value1")), + new StreamEntry(new StreamEntryID("0-1"), Collections.singletonMap("field2", "value2"))); when(commandObjects.xrange(key, start, end)).thenReturn(listObjectCommandObject); when(commandExecutor.executeCommand(listObjectCommandObject)).thenReturn(expectedRange); @@ -870,8 +870,8 @@ public void testXrangeWithCountBinary() { byte[] end = "+".getBytes(); int count = 2; List expectedRange = Arrays.asList( - new StreamEntry(new StreamEntryID("0-0"), Collections.singletonMap("field1", "value1")), - new StreamEntry(new StreamEntryID("0-1"), Collections.singletonMap("field2", "value2"))); + new StreamEntry(new StreamEntryID("0-0"), Collections.singletonMap("field1", "value1")), + new StreamEntry(new StreamEntryID("0-1"), Collections.singletonMap("field2", "value2"))); when(commandObjects.xrange(key, start, end, count)).thenReturn(listObjectCommandObject); when(commandExecutor.executeCommand(listObjectCommandObject)).thenReturn(expectedRange); @@ -1061,8 +1061,8 @@ public void testXrevrangeBinary() { byte[] end = "+".getBytes(); byte[] start = "0-0".getBytes(); List expectedReverseRange = Arrays.asList( - new StreamEntry(new StreamEntryID("0-1"), Collections.singletonMap("field2", "value2")), - new StreamEntry(new StreamEntryID("0-0"), Collections.singletonMap("field1", "value1"))); + new StreamEntry(new StreamEntryID("0-1"), Collections.singletonMap("field2", "value2")), + new StreamEntry(new StreamEntryID("0-0"), Collections.singletonMap("field1", "value1"))); when(commandObjects.xrevrange(key, end, start)).thenReturn(listObjectCommandObject); when(commandExecutor.executeCommand(listObjectCommandObject)).thenReturn(expectedReverseRange); @@ -1104,7 +1104,7 @@ public void testXrevrangeWithCountBinary() { byte[] start = "0-0".getBytes(); int count = 1; List expectedReverseRange = Collections.singletonList( - new StreamEntry(new StreamEntryID("0-1"), Collections.singletonMap("field2", "value2"))); + new StreamEntry(new StreamEntryID("0-1"), Collections.singletonMap("field2", "value2"))); when(commandObjects.xrevrange(key, end, start, count)).thenReturn(listObjectCommandObject); when(commandExecutor.executeCommand(listObjectCommandObject)).thenReturn(expectedReverseRange);