From 87767c3c43a88c9833aea57103808377b70d8d0b Mon Sep 17 00:00:00 2001 From: Andrew Walker Date: Tue, 6 Feb 2024 12:08:56 -0800 Subject: [PATCH] Fix --- tests/runtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtest.py b/tests/runtest.py index e10a0adc4e932..20d6ec207e1ea 100755 --- a/tests/runtest.py +++ b/tests/runtest.py @@ -127,7 +127,7 @@ elif output == '--tests': tests.extend(arg.split(',')) elif output == '--markers': - markers.extend(['-m', f'"base or {arg}"']) + markers.extend(['-m', f'base or {arg}']) if 'ip' not in locals() and 'passwd' not in locals() and 'interface' not in locals(): print("Mandatory option missing!\n")