removed another iter

This commit is contained in:
Bryan Herman 2014-04-03 08:08:02 -04:00
parent 7e3b4e3481
commit 5970ee0e18

View file

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