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 61405da9a5)

Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
This commit is contained in:
Miss Islington (bot) 2023-03-22 06:45:28 -07:00 committed by GitHub
parent f7dea0cb32
commit b9304beda0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -604,7 +604,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: