Skip to content

Commit

Permalink
styleci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
robfrawley committed Sep 15, 2016
1 parent 893772e commit fb3db4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/FileLockTest.php
Expand Up @@ -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);
Expand Down

0 comments on commit fb3db4d

Please sign in to comment.