Skip to content

Commit

Permalink
Spotless
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Carbonetto <andrew.carbonetto@improving.com>
  • Loading branch information
acarbonetto authored and SanHalacogluImproving committed Feb 22, 2024
1 parent 506f0be commit b69a1c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions java/client/src/test/java/glide/api/RedisClientTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -733,8 +733,8 @@ public void select_returns_success() {
Long index = 55L;
when(testResponse.get()).thenReturn(OK);
when(commandManager.<String>submitNewCommand(
eq(Select), eq(new String[] {Long.toString(index)}), any()))
.thenReturn(testResponse);
eq(Select), eq(new String[] {Long.toString(index)}), any()))
.thenReturn(testResponse);

// exercise
CompletableFuture<String> response = service.select(index);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/** Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0 */
package glide.standalone;

import static glide.api.BaseClient.OK;
import static glide.TransactionTestUtilities.transactionTest;
import static glide.TransactionTestUtilities.transactionTestResult;
import static glide.api.BaseClient.OK;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
Expand Down

0 comments on commit b69a1c4

Please sign in to comment.