Skip to content

Commit 9d9e285

Browse files
committed
Test the argument list, not the tuple of argument tuple.
- Legacy-Id: 5134
1 parent 1ce29c0 commit 9d9e285

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/utils/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def run_tests(*args, **kwargs):
104104
if failures:
105105
tfile.write("%s FAILED (failures=%s)\n" % (timestr, failures))
106106
else:
107-
if args:
107+
if list(*args):
108108
tfile.write("%s SUCCESS (tests=%s)\n" % (timestr, repr(list(*args))))
109109
else:
110110
tfile.write("%s OK\n" % (timestr, ))

0 commit comments

Comments
 (0)