[py-svn] r10750 - py/dist/py/test/terminal

hpk at codespeak.net hpk at codespeak.net
Sat Apr 16 22:31:10 CEST 2005


Author: hpk
Date: Sat Apr 16 22:31:10 2005
New Revision: 10750

Modified:
   py/dist/py/test/terminal/terminal.py
Log:
fix formatting bug


Modified: py/dist/py/test/terminal/terminal.py
==============================================================================
--- py/dist/py/test/terminal/terminal.py	(original)
+++ py/dist/py/test/terminal/terminal.py	Sat Apr 16 22:31:10 2005
@@ -80,7 +80,7 @@
         if result is None or not isinstance(colitem, py.test.Item): 
             if isinstance(colitem, py.test.collect.Module) \
                 and self.config.option.verbose == 0 \
-                and colitem.numitems != 0:   
+                and colitem.numitems >= 0:   
                 self.out.line() 
             return
         else: 



More information about the pytest-commit mailing list