Fix bug where specifying no testing suites would break the test script

master
Sven Slootweg 12 years ago
parent 4ef042b603
commit a8186e46ed

@ -37,7 +37,7 @@ options = vars(args)
to_test = {} to_test = {}
if len(options['suites']) == 0: if len(options['suites']) == 0:
for suite in suites: for key, suite in suites.iteritems():
for description, url in suite.iteritems(): for description, url in suite.iteritems():
to_test[description] = url to_test[description] = url
else: else:

Loading…
Cancel
Save