[py-svn] r62491 - py/trunk/py/test/plugin

hpk at codespeak.net hpk at codespeak.net
Tue Mar 3 19:05:13 CET 2009


Author: hpk
Date: Tue Mar  3 19:05:08 2009
New Revision: 62491

Modified:
   py/trunk/py/test/plugin/pytest_terminal.py
Log:
fix a typo


Modified: py/trunk/py/test/plugin/pytest_terminal.py
==============================================================================
--- py/trunk/py/test/plugin/pytest_terminal.py	(original)
+++ py/trunk/py/test/plugin/pytest_terminal.py	Tue Mar  3 19:05:08 2009
@@ -121,7 +121,7 @@
             line = info.verboseline(basedir=self.curdir) + " "
             extra = ""
             if event.host:
-                extra = "-> " + event.host.hostid
+                extra = "-> " + str(event.host)
             self.write_ensure_prefix(line, extra)
         else:
             # ensure that the path is printed before the 1st test of



More information about the pytest-commit mailing list