We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c077ba6 commit 4536917Copy full SHA for 4536917
java/integTest/src/test/java/glide/SharedCommandTests.java
@@ -1004,7 +1004,7 @@ public void non_UTF8_GlideString_test(BaseClient client) {
1004
assertEquals(1, client.hset(hashKey, fieldValueMap).get());
1005
assertDeepEquals(new GlideString[] {gs(stringField)}, client.hkeys(hashKey).get());
1006
assertThrows(
1007
- ExecutionException.class, () -> client.hget(hashKey.toString(), stringField).get());
+ ExecutionException.class, () -> client.hget(hashKey.toString(), stringField).get());
1008
1009
// Non UTF-8 set key and field value map
1010
assertEquals(1, client.hset(hashNonUTF8Key, fieldValueMap).get());
0 commit comments