Skip to content

Commit

Permalink
test: dont save config or cache in multiple storages
Browse files Browse the repository at this point in the history
  • Loading branch information
theus77 committed Aug 23, 2024
1 parent ff7128c commit 06324a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public function testSaveConfig(): void

$configHash = $this->storageManager->saveConfig($data);
$this->assertEquals(\sha1(\json_encode($data)), $configHash);
$this->assertEquals(2, \count($this->storageManager->headIn($configHash)));
$this->assertEquals(1, \count($this->storageManager->headIn($configHash)));
$this->assertEquals(3, $this->storageManager->remove($configHash));
}

Expand Down

0 comments on commit 06324a6

Please sign in to comment.