From fb3db4d16620863ba431f3e0fddbcae93376685c Mon Sep 17 00:00:00 2001 From: Rob Frawley 2nd Date: Thu, 15 Sep 2016 03:48:39 -0400 Subject: [PATCH] styleci fix --- tests/FileLockTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/FileLockTest.php b/tests/FileLockTest.php index 30f85c1..8b43848 100755 --- a/tests/FileLockTest.php +++ b/tests/FileLockTest.php @@ -212,11 +212,11 @@ public function testCreateFileOnLock() { $file = tempnam(sys_get_temp_dir(), 'lock-test'); unlink($file); - $this->assertFalse(file_exists($file)); + $this->assertFileNotExists($file); $lock = new FileLock($file); $lock->acquire(); - $this->assertTrue(file_exists($file)); + $this->assertFileExists($file); $lock->release(); unlink($file);