Updated test cases

This commit is contained in:
vladvildanov
2025-01-13 13:23:26 +02:00
committed by Till Krüss
parent 24ddf95ba2
commit 8fb212c91b
17 changed files with 18 additions and 70 deletions
@@ -101,7 +101,7 @@ class JSONSTRAPPEND_Test extends PredisCommandTestCase
$actualResponse = $redis->jsonstrappend('key', '$.key2', '"foo"');
$this->assertSame([9], $actualResponse);
$this->assertSame('[{"key1":"value1","key2":"value2foo"}]', $redis->jsonget('key'));
$this->assertSame('{"key1":"value1","key2":"value2foo"}', $redis->jsonget('key'));
}
public function jsonProvider(): array