Skip to content

Commit

Permalink
run linter
Browse files Browse the repository at this point in the history
Signed-off-by: Shoham Elias <[email protected]>
  • Loading branch information
shohamazon committed Sep 12, 2024
1 parent 2176da8 commit c0cbe05
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion java/client/src/test/java/glide/api/GlideClientTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -1588,7 +1588,6 @@ public void scriptShow_returns_script_source_glidestring() {
// setup
GlideString scriptSource = gs("return { KEYS[1], ARGV[1] }");
GlideString hash = gs(UUID.randomUUID().toString());
when(script.getHash()).thenReturn(hash.toString());

CompletableFuture<GlideString> testResponse = new CompletableFuture<>();
testResponse.complete(scriptSource);
Expand Down
2 changes: 1 addition & 1 deletion node/src/GlideClusterClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
BaseClientConfiguration,
Decoder,
DecoderOption,
GlideRecord, // eslint-disable-line @typescript-eslint/no-unused-vars
GlideRecord,
GlideReturnType,
GlideString,
PubSubMsg,
Expand Down
8 changes: 4 additions & 4 deletions node/tests/SharedTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
// Each test cases has access to a client instance and, optionally, to a cluster - object, which
// represents a running server instance. See first 2 test cases as examples.

import {expect,it} from "@jest/globals";
import {v4 as uuidv4} from "uuid";
import { expect, it } from "@jest/globals";
import { v4 as uuidv4 } from "uuid";
import {
BaseClientConfiguration,
BitFieldGet,
Expand Down Expand Up @@ -55,8 +55,8 @@ import {
convertGlideRecordToRecord,
parseInfoResponse,
} from "..";
import {ValkeyCluster} from "../../utils/TestUtils";
import {Client,GetAndSetRandomValue,getFirstResult} from "./TestUtilities";
import { ValkeyCluster } from "../../utils/TestUtils";
import { Client, GetAndSetRandomValue, getFirstResult } from "./TestUtilities";

export type BaseClient = GlideClient | GlideClusterClient;

Expand Down

0 comments on commit c0cbe05

Please sign in to comment.