8000 gh-101947: Remove size check from sqlite3 serialize test (#102914) · python/cpython@61405da · GitHub
[go: up one dir, main page]

Skip to content

Commit 61405da

Browse files
gh-101947: Remove size check from sqlite3 serialize test (#102914)
The size of the returned data is too implementation specific.
1 parent 3d7eb66 commit 61405da

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)
0