Skip to content

Commit

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

0 comments on commit d755b35

Please sign in to comment.