Skip to content

Commit

Permalink
Tests: Update AppCacheTest.php
Browse files Browse the repository at this point in the history
Replaces deprecated assertFileNotExists()
  • Loading branch information
lastzero committed Jul 5, 2022
1 parent 1d29ddb commit 746f7e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tests/Kernel/AppCacheTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ public function testCachingDisabled()
$app = new App('symlex_test_nocache', __DIR__ . '/App', false);
$result = $app->getContainer();
$this->assertInstanceOf('\Symfony\Component\DependencyInjection\Container', $result);
$this->assertFileNotExists($app->getContainerCacheFilename());
$this->assertFileDoesNotExist($app->getContainerCacheFilename());
}
}

0 comments on commit 746f7e2

Please sign in to comment.