From 5970ee0e1821129a3a8987fcd9a51b3aad67aa38 Mon Sep 17 00:00:00 2001 From: Bryan Herman Date: Thu, 3 Apr 2014 08:08:02 -0400 Subject: [PATCH] removed another iter --- tests/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run_tests.py b/tests/run_tests.py index c977c5f5a6..a664438c81 100755 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -222,7 +222,7 @@ FAIL = '\033[91m' ENDC = '\033[0m' BOLD = '\033[1m' -for test in iter(tests): +for test in tests: print(test + '.'*(50 - len(test)), end='') if tests[test].success: print(BOLD + OK + '[OK]' + ENDC)