tests - fix indent and isfile import

This commit is contained in:
florian 2022-07-13 15:25:32 +02:00
parent 773a37d456
commit a91fc73072
2 changed files with 4 additions and 3 deletions

View File

@ -7,8 +7,8 @@ from subprocess import run
class DockerTest(Test) :
def __init__(self, name, timeout, tests) :
super().__init__(name, "docker", timeout, tests)
def __init__(self, name, timeout, tests) :
super().__init__(name, "docker", timeout, tests)
self.__domains = {
r"www\.example\.com": getenv("TEST_DOMAIN1"),
r"auth\.example\.com": getenv("TEST_DOMAIN1"),

View File

@ -2,7 +2,8 @@
from sys import path, argv, exit
from glob import glob
from os import getcwd, isfile
from os import getcwd
from os.path import isfile
path.append(getcwd() + "/utils")
path.append(getcwd() + "/tests")