From 746f7e2f6a2fd6ae8e7f87996e1b0d9ec6697e65 Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Tue, 5 Jul 2022 09:07:45 +0200 Subject: [PATCH] Tests: Update AppCacheTest.php Replaces deprecated assertFileNotExists() --- src/Tests/Kernel/AppCacheTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tests/Kernel/AppCacheTest.php b/src/Tests/Kernel/AppCacheTest.php index 710cf02..c71341b 100644 --- a/src/Tests/Kernel/AppCacheTest.php +++ b/src/Tests/Kernel/AppCacheTest.php @@ -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()); } } \ No newline at end of file