From 00cf1d7271b9746411646500c83348f0b30bfe28 Mon Sep 17 00:00:00 2001 From: Lisachenko Alexander Date: Sun, 6 Jan 2019 00:55:35 +0300 Subject: [PATCH] Use appropriate assert instead of combination --- tests/Go/Console/Command/CacheWarmupCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Go/Console/Command/CacheWarmupCommandTest.php b/tests/Go/Console/Command/CacheWarmupCommandTest.php index f2088319..9b2c52ea 100644 --- a/tests/Go/Console/Command/CacheWarmupCommandTest.php +++ b/tests/Go/Console/Command/CacheWarmupCommandTest.php @@ -15,7 +15,7 @@ public function setUp() public function testItWarmsUpCache() { - $this->assertFalse(file_exists($this->configuration['cacheDir'])); + $this->assertFileNotExists($this->configuration['cacheDir']); $this->warmUp();