Skip to content

Commit fb038b7

Browse files
pythongh-101947: Remove size check from sqlite3 serialize test
The size of the returned data is too implementation specific.
1 parent d1a89ce commit fb038b7

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Lib/test/test_sqlite3/test_dbapi.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,6 @@ def test_serialize_deserialize(self):
606606
with cx:
607607
cx.execute("create table t(t)")
608608
data = cx.serialize()
609-
self.assertEqual(len(data), 8192)
610609

611610
# Remove test table, verify that it was removed.
612611
with cx:

0 commit comments

Comments
 (0)