[pypy-svn] pypy psycopg2compatibility: Oops, forgot to rerun the test after fixing the merge.

ademan commits-noreply at bitbucket.org
Thu Dec 23 09:25:21 CET 2010


Author: Daniel Roberts <Ademan555 at gmail.com>
Branch: psycopg2compatibility
Changeset: r40192:d56ad70728f5
Date: 2010-12-23 00:20 -0800
http://bitbucket.org/pypy/pypy/changeset/d56ad70728f5/

Log:	Oops, forgot to rerun the test after fixing the merge.

diff --git a/pypy/module/cpyext/test/test_sequence.py b/pypy/module/cpyext/test/test_sequence.py
--- a/pypy/module/cpyext/test/test_sequence.py
+++ b/pypy/module/cpyext/test/test_sequence.py
@@ -101,7 +101,7 @@
 
         result = api.PySequence_DelItem(w_l, 2)
         assert result != -1
-        assert space.eq_w(w_l, space.wrap([1, 2, 4])
+        assert space.eq_w(w_l, space.wrap([1, 2, 4]))
 
         self.raises(space, api, IndexError, api.PySequence_DelItem,
                     w_l, 3)


More information about the Pypy-commit mailing list