1 new commit in pytest:

https://bitbucket.org/hpk42/pytest/changeset/f26211d8ba33/
changeset:   f26211d8ba33
user:        hpk42
date:        2012-06-03 16:10:10
summary:     fix py2py3 example tests
affected #:  2 files

diff -r b6295824bd44b09231980f709e13de0b6153ce9b -r 
f26211d8ba3360d59e60eaa379856b7fd02ce654 doc/example/py2py3/test_py2.py
--- a/doc/example/py2py3/test_py2.py
+++ b/doc/example/py2py3/test_py2.py
@@ -3,5 +3,5 @@
     try:
         0/0
     except ZeroDivisionError, e:
-        assert 0, e
+        pass
 


diff -r b6295824bd44b09231980f709e13de0b6153ce9b -r 
f26211d8ba3360d59e60eaa379856b7fd02ce654 doc/example/py2py3/test_py3.py
--- a/doc/example/py2py3/test_py3.py
+++ b/doc/example/py2py3/test_py3.py
@@ -3,5 +3,5 @@
     try:
         0/0
     except ZeroDivisionError as e:
-        assert 0, e
+        pass

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