Author: Armin Rigo <[email protected]>
Branch:
Changeset: r63104:83bc72e8e482
Date: 2013-04-06 18:35 +0200
http://bitbucket.org/pypy/pypy/changeset/83bc72e8e482/
Log: Fix the skipped part of the test (it was bogus)
diff --git a/pypy/module/test_lib_pypy/test_sqlite3.py
b/pypy/module/test_lib_pypy/test_sqlite3.py
--- a/pypy/module/test_lib_pypy/test_sqlite3.py
+++ b/pypy/module/test_lib_pypy/test_sqlite3.py
@@ -209,6 +209,7 @@
# but it's not right now
pytest.skip("in theory 'val' should be a read-write buffer")
val[1] = 'X'
+ got = (val[0], val[1], val[2], val[3])
assert got == ('b', 'X', 'o', 'b')
def test_description_after_fetchall(con):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit