Skip to content

Commit

Permalink
Minor IT test update.
Browse files Browse the repository at this point in the history
  • Loading branch information
SanHalacogluImproving committed Apr 10, 2024
1 parent 49bec75 commit e2a7585
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions java/integTest/src/test/java/glide/SharedCommandTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -1311,8 +1311,7 @@ public void zmscore(BaseClient client) {
.zmscore(key1, new String[] {"one", "nonExistentMember", "nonExistentMember", "three"})
.get());
assertArrayEquals(
new Double[] {null},
client.zmscore("nonExistentKey", new String[] {"nonExistentMember"}).get());
new Double[] {null}, client.zmscore("nonExistentKey", new String[] {"one"}).get());

// Key exists, but it is not a set
assertEquals(OK, client.set(key2, "bar").get());
Expand Down

0 comments on commit e2a7585

Please sign in to comment.