From 70bf961d877d44c9b292217cd57d7385bce9a91c Mon Sep 17 00:00:00 2001 From: Tim van Dijen <tvdijen@gmail.com> Date: Thu, 12 Jan 2023 18:17:41 +0100 Subject: [PATCH] Suppress actions warning --- tests/modules/core/src/Storage/SQLPermanentStorageTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/modules/core/src/Storage/SQLPermanentStorageTest.php b/tests/modules/core/src/Storage/SQLPermanentStorageTest.php index 56e7b1631..a38d07d3e 100644 --- a/tests/modules/core/src/Storage/SQLPermanentStorageTest.php +++ b/tests/modules/core/src/Storage/SQLPermanentStorageTest.php @@ -36,7 +36,7 @@ class SQLPermanentStorageTest extends TestCase */ public static function tearDownAfterClass(): void { - unlink(sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'sqllite' . DIRECTORY_SEPARATOR . 'test.sqlite'); + @unlink(sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'sqllite' . DIRECTORY_SEPARATOR . 'test.sqlite'); } -- GitLab