From b9304beda0ca0ce25d4f2aace73e7f926aaebcf4 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Wed, 22 Mar 2023 06:45:28 -0700 Subject: 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 61405da9a5689f554aa53929a2a9c168cab6056b) Co-authored-by: Erlend E. Aasland --- Lib/test/test_sqlite3/test_dbapi.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_sqlite3/test_dbapi.py b/Lib/test/test_sqlite3/test_dbapi.py index 2aea110..9d94ddd 100644 --- a/Lib/test/test_sqlite3/test_dbapi.py +++ b/Lib/test/test_sqlite3/test_dbapi.py @@ -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: -- cgit v0.12