tests - fix typo in LinuxTest

This commit is contained in:
bunkerity 2022-07-19 15:22:49 +02:00
parent a0948923ec
commit f2ac7bca74
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
1 changed files with 1 additions and 1 deletions

View File

@ -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")