1 new commit in pytest:

https://bitbucket.org/hpk42/pytest/changeset/7b1c3413c066/
changeset:   7b1c3413c066
user:        RonnyPfannschmidt
date:        2012-05-10 01:38:13
summary:     hande the trial todo class by using repr
affected #:  1 file

diff -r 01529407b20986e9e7fa5c57f553853995959b57 -r 
7b1c3413c066c6bb728fc060bdb4e7a3cbb23efd _pytest/skipping.py
--- a/_pytest/skipping.py
+++ b/_pytest/skipping.py
@@ -137,7 +137,7 @@
         rep = __multicall__.execute()
         if rep.when == "call":
             # we need to translate into how py.test encodes xpass
-            rep.keywords['xfail'] = "reason: " + item._unexpectedsuccess
+            rep.keywords['xfail'] = "reason: " + repr(item._unexpectedsuccess)
             rep.outcome = "failed"
         return rep
     if not (call.excinfo and

Repository URL: https://bitbucket.org/hpk42/pytest/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
py-svn mailing list
py-svn@codespeak.net
http://codespeak.net/mailman/listinfo/py-svn

Reply via email to