Skip to content

Commit

Permalink
Update java/client/src/test/java/glide/api/RedisClientTest.java
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Carbonetto <[email protected]>
  • Loading branch information
jonathanl-bq and acarbonetto authored Feb 17, 2024
1 parent 78abce0 commit 205b7ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/client/src/test/java/glide/api/RedisClientTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public void info_with_empty_InfoOptions_returns_success() {
public void zadd_returns_success() {
// setup
String key = "testKey";
Map<String, Double> membersScores = Map.of("testMember1", 1.0, "testMember2", 2.0);
Map<String, Double> membersScores = Map.of("testMember1", 1.0d, "testMember2", 2.0d);
String[] membersScoresArgs =
membersScores.entrySet().stream()
.flatMap(e -> Stream.of(e.getValue().toString(), e.getKey()))
Expand Down

0 comments on commit 205b7ca

Please sign in to comment.