From e16d64d4a8dc3f0d6a64cf1c9476aa4a59d8e73f Mon Sep 17 00:00:00 2001 From: Dmitriy Derepko Date: Sun, 9 Jul 2023 22:32:04 +0300 Subject: [PATCH] Fix psalm errors (#220) --- tests/Unit/Storage/FileStorageTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/Storage/FileStorageTest.php b/tests/Unit/Storage/FileStorageTest.php index ffb28949..3306a31d 100644 --- a/tests/Unit/Storage/FileStorageTest.php +++ b/tests/Unit/Storage/FileStorageTest.php @@ -32,7 +32,7 @@ public function testFlushWithGC(array $data): void $storage->addCollector($collector); $storage->flush(); - $this->assertLessThanOrEqual(5, count($storage->read(StorageInterface::TYPE_SUMMARY))); + $this->assertLessThanOrEqual(5, count($storage->read(StorageInterface::TYPE_SUMMARY, null))); } /**