tests - fix argv len check

This commit is contained in:
florian 2022-07-18 22:21:53 +02:00
parent 0294064532
commit fa319ec101
1 changed files with 1 additions and 1 deletions

View File

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