From 03f6cbf63250f1d0a60f23aa3604e10b6be43fe2 Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Wed, 12 Aug 2009 15:49:29 +0000 Subject: made if test slightly less obtuse git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@803568 13f79535-47bb-0310-9956-ffa450edef68 --- python/qpid-python-test | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'python/qpid-python-test') diff --git a/python/qpid-python-test b/python/qpid-python-test index 3785af559f..ca6bec00fb 100755 --- a/python/qpid-python-test +++ b/python/qpid-python-test @@ -104,10 +104,10 @@ for a in args: includes.append(a.strip()) if not includes: - if not opts.modules: - includes.extend(["qpid.tests.*", "tests.*", "tests_0-10.*"]) - else: + if opts.modules: includes.append("*") + else: + includes.extend(["qpid.tests.*", "tests.*", "tests_0-10.*"]) def is_ignored(path): for p in excludes: -- cgit v1.2.1