From f2ac7bca74103cb881d0bde47aa7333d2a83f5a4 Mon Sep 17 00:00:00 2001 From: bunkerity Date: Tue, 19 Jul 2022 15:22:49 +0200 Subject: [PATCH] tests - fix typo in LinuxTest --- tests/LinuxTest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/LinuxTest.py b/tests/LinuxTest.py index 13975280a..5651e0ca1 100644 --- a/tests/LinuxTest.py +++ b/tests/LinuxTest.py @@ -42,7 +42,7 @@ class LinuxTest(Test) : cmd = "apt install -y /opt/\$(ls /opt | grep deb)" elif distro in ["centos", "fedora"] : cmd = "dnf install -y /opt/\$(ls /opt | grep rpm)" - proc = TestLinux.docker_exec(distro, cmd) + proc = LinuxTest.docker_exec(distro, cmd) if proc.returncode != 0 : raise(Exception("docker exec apt install failed (linux stack)")) proc = LinuxTest.docker_exec(distro, "systemctl start bunkerweb")