From a8186e46ed7499349c31295bb854bb8bc3ac04c0 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Fri, 26 Oct 2012 23:33:09 +0200 Subject: [PATCH] Fix bug where specifying no testing suites would break the test script --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 18d5ca9..5d6b356 100644 --- a/test.py +++ b/test.py @@ -37,7 +37,7 @@ options = vars(args) to_test = {} if len(options['suites']) == 0: - for suite in suites: + for key, suite in suites.iteritems(): for description, url in suite.iteritems(): to_test[description] = url else: