gh-101947: Remove size check from sqlite3 serialize test (#102914)

The size of the returned data is too implementation specific.
This commit is contained in:
Erlend E. Aasland 2023-03-22 14:05:08 +01:00 committed by GitHub
parent 3d7eb66c96
commit 61405da9a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -606,7 +606,6 @@ class SerializeTests(unittest.TestCase):
with cx:
cx.execute("create table t(t)")
data = cx.serialize()
self.assertEqual(len(data), 8192)
# Remove test table, verify that it was removed.
with cx: