You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by rh...@apache.org on 2009/08/12 17:49:29 UTC

svn commit: r803568 - /qpid/trunk/qpid/python/qpid-python-test

Author: rhs
Date: Wed Aug 12 15:49:29 2009
New Revision: 803568

URL: http://svn.apache.org/viewvc?rev=803568&view=rev
Log:
made if test slightly less obtuse

Modified:
    qpid/trunk/qpid/python/qpid-python-test

Modified: qpid/trunk/qpid/python/qpid-python-test
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/python/qpid-python-test?rev=803568&r1=803567&r2=803568&view=diff
==============================================================================
--- qpid/trunk/qpid/python/qpid-python-test (original)
+++ qpid/trunk/qpid/python/qpid-python-test Wed Aug 12 15:49:29 2009
@@ -104,10 +104,10 @@
   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:



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org