From 28f1b4f734a46de186d9f3a12fc66c6a89425737 Mon Sep 17 00:00:00 2001 From: florian Date: Wed, 13 Jul 2022 17:13:13 +0200 Subject: [PATCH] tests - rename variable --- tests/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/main.py b/tests/main.py index 1fec88c39..df4d0bdd6 100755 --- a/tests/main.py +++ b/tests/main.py @@ -37,7 +37,7 @@ for example in glob("./examples/*") : continue for test in tests["tests"] : test_obj = None - if test_obj == "docker" : + if test_type == "docker" : test_obj = DockerTest(tests["name"], tests["timeout"], tests["tests"]) if not test_obj.run_tests() : log("TESTS", "❌", "Tests failed for " + tests["name"])