From eb6f0d67376055db8c9d8c5fe1d24ce5abe0e472 Mon Sep 17 00:00:00 2001 From: bunkerity Date: Fri, 12 Aug 2022 09:35:14 +0200 Subject: [PATCH] tests - fix purging wrong folder for linux tests --- tests/LinuxTest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/LinuxTest.py b/tests/LinuxTest.py index 16b6da1e..c84911c2 100644 --- a/tests/LinuxTest.py +++ b/tests/LinuxTest.py @@ -120,7 +120,7 @@ class LinuxTest(Test) : def _cleanup_test(self) : try : - proc = LinuxTest.docker_exec(self.__distro, "rm -rf /opt/bunkerweb/www/* ; rm -rf /opt/bunkerweb/confs/* ; rm -rf /opt/bunkerweb/plugins/*") + proc = LinuxTest.docker_exec(self.__distro, "rm -rf /opt/bunkerweb/www/* ; rm -rf /opt/bunkerweb/configs/* ; rm -rf /opt/bunkerweb/plugins/*") if proc.returncode != 0 : raise(Exception("docker exec rm failed (cleanup)")) super()._cleanup_test()