Skip to content

Commit 504bc6d

Browse files
committed
Typo
1 parent b052d58 commit 504bc6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/io/lettuce/core/json/RedisJsonIntegrationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,11 @@ public void jsonArrpopEmptyArray() {
168168

169169
@Test
170170
public void jsonArrpopWithRootPathAndIndex() {
171-
JsonValue value = redis.getJsonParser().createJsonValue("[\"one\", \"two\", \"three\"]");
171+
JsonValue value = redis.getJsonParser().createJsonValue("[\"one\",\"two\",\"three\"]");
172172
redis.jsonSet("myKey", JsonPath.ROOT_PATH, value);
173173
List<JsonValue> result = redis.jsonArrpop("myKey", JsonPath.ROOT_PATH, 1);
174174
assertThat(result.toString()).isEqualTo("[\"two\"]");
175-
assertThat(redis.jsonGet("myKey").get(0).toString()).isEqualTo("[\"one\", \"three\"]");
175+
assertThat(redis.jsonGet("myKey").get(0).toString()).isEqualTo("[\"one\",\"three\"]");
176176
}
177177

178178
@ParameterizedTest(name = "With {0} as path")

0 commit comments

Comments
 (0)