[pypy-svn] r70875 - pypy/trunk/py/plugin

arigo at codespeak.net arigo at codespeak.net
Tue Jan 26 12:52:41 CET 2010


Author: arigo
Date: Tue Jan 26 12:52:41 2010
New Revision: 70875

Modified:
   pypy/trunk/py/plugin/pytest_terminal.py
Log:
Revert checkin by mistake.


Modified: pypy/trunk/py/plugin/pytest_terminal.py
==============================================================================
--- pypy/trunk/py/plugin/pytest_terminal.py	(original)
+++ pypy/trunk/py/plugin/pytest_terminal.py	Tue Jan 26 12:52:41 2010
@@ -276,8 +276,8 @@
                 if len(repr_plugin)+26 > fullwidth:
                     repr_plugin = repr_plugin[:(fullwidth-30)] + '...'
                 self.write_line("    %-20s: %s" %(name, repr_plugin))
-        #for i, testarg in enumerate(self.config.args):
-        #    self.write_line("test object %d: %s" %(i+1, testarg))
+        for i, testarg in enumerate(self.config.args):
+            self.write_line("test object %d: %s" %(i+1, testarg))
 
     def pytest_sessionfinish(self, exitstatus, __multicall__):
         __multicall__.execute() 



More information about the Pypy-commit mailing list