From 3420a03fbc84064fad9562f3ca611161a4dfc66a Mon Sep 17 00:00:00 2001 From: Philipp Lang Date: Tue, 19 Sep 2023 19:57:40 +0200 Subject: [PATCH] Cleanup after PluginsTest --- tests/Unit/Plugin/PluginTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Unit/Plugin/PluginTest.php b/tests/Unit/Plugin/PluginTest.php index 68e34859..560600e2 100644 --- a/tests/Unit/Plugin/PluginTest.php +++ b/tests/Unit/Plugin/PluginTest.php @@ -31,5 +31,6 @@ class PluginTest extends TestCase array_map(fn ($file) => unlink($file), glob($pluginsPath.'/*')); rmdir($pluginsPath); + rmdir(dirname($pluginsPath)); } }