Skip to content

Commit b9304be

Browse files
gh-101947: Remove size check from sqlite3 serialize test (GH-102914)
The size of the returned data is too implementation specific. (cherry picked from commit 61405da) Co-authored-by: Erlend E. Aasland <[email protected]>
1 parent f7dea0c commit b9304be

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
@@ -604,7 +604,6 @@ def test_serialize_deserialize(self):
604604
with cx:
605605
cx.execute("create table t(t)")
606606
data = cx.serialize()
607-
self.assertEqual(len(data), 8192)
608607

609608
# Remove test table, verify that it was removed.
610609
with cx:

0 commit comments

Comments
 (0)