File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17883,7 +17883,7 @@ public function testCacheFallback(): void
1788317883 $this->assertCount(1, $database->find('testRedisFallback', [Query::equal('string', ['text📝'])]));
1788417884 $this->assertFalse(($database->getDocument('testRedisFallback', 'doc1'))->isEmpty());
1788517885
17886- // Check we can modify data
17886+ // Check we cannot modify data
1788717887 try {
1788817888 $database->updateDocument('testRedisFallback', 'doc1', new Document([
1788917889 'string' => 'text📝 updated',
@@ -17905,7 +17905,6 @@ public function testCacheFallback(): void
1790517905 sleep(5);
1790617906
1790717907 // Should return empty results after the delete operation
17908- $this->assertCount(0 , $database->find('testRedisFallback', [Query::equal('string', ['text📝'])]));
17908+ $this->assertCount(1 , $database->find('testRedisFallback', [Query::equal('string', ['text📝'])]));
1790917909 }
1791017910}
17911- s
You can’t perform that action at this time.
0 commit comments