From fa319ec101ffd211d7887ed07d7f62961773dc21 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 18 Jul 2022 22:21:53 +0200 Subject: [PATCH] tests - fix argv len check --- tests/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/main.py b/tests/main.py index 79672219b..e8e0ce6fc 100755 --- a/tests/main.py +++ b/tests/main.py @@ -17,7 +17,7 @@ from KubernetesTest import KubernetesTest from LinuxTest import LinuxTest from logger import log -if len(argv) != 2 : +if len(argv) <= 1 : log("TESTS", "❌", "Missing type argument") exit(1)