summaryrefslogtreecommitdiff
path: root/tests/test_runner
diff options
context:
space:
mode:
authorkonsti <konstin@mailbox.org>2023-08-22 12:42:57 +0200
committerGitHub <noreply@github.com>2023-08-22 12:42:57 +0200
commit48a1929ca050f1333927860ff561f6371706968a (patch)
tree6678df1205fd4b589fd268d20c841b85d1406c4d /tests/test_runner
parentf1c0a3baf74baae94a0d4137782e15edcdf54a7e (diff)
Removed unnecessary trailing commas in tests.
Diffstat (limited to 'tests/test_runner')
-rw-r--r--tests/test_runner/runner.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_runner/runner.py b/tests/test_runner/runner.py
index 5c34b343d9..5d4a6759c3 100644
--- a/tests/test_runner/runner.py
+++ b/tests/test_runner/runner.py
@@ -21,9 +21,9 @@ class CustomOptionsTestRunner(DiscoverRunner):
@classmethod
def add_arguments(cls, parser):
- parser.add_argument("--option_a", "-a", default="1"),
- parser.add_argument("--option_b", "-b", default="2"),
- parser.add_argument("--option_c", "-c", default="3"),
+ parser.add_argument("--option_a", "-a", default="1")
+ parser.add_argument("--option_b", "-b", default="2")
+ parser.add_argument("--option_c", "-c", default="3")
def run_tests(self, test_labels, **kwargs):
print("%s:%s:%s" % (self.option_a, self.option_b, self.option_c))