Skip to content

Commit a185400

Browse files
committed
fix json_debug_memory test
1 parent 9602f65 commit a185400

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/json_commands.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ async fn json_debug_memory() -> Result<()> {
253253

254254
let result: Vec<usize> = client.json_debug_memory("key", "$.foo[*].bar").await?;
255255
assert_eq!(2, result.len());
256-
assert_eq!(59, result[0]);
256+
assert_eq!(128, result[0]);
257257
assert_eq!(8, result[1]);
258258

259259
Ok(())

0 commit comments

Comments
 (0)