From: Erlend E. Aasland Date: Wed, 22 Mar 2023 13:05:08 +0000 (+0100) Subject: gh-101947: Remove size check from sqlite3 serialize test (#102914) X-Git-Tag: v3.12.0a7~96 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=61405da9a5689f554aa53929a2a9c168cab6056b;p=thirdparty%2FPython%2Fcpython.git gh-101947: Remove size check from sqlite3 serialize test (#102914) The size of the returned data is too implementation specific. --- diff --git a/Lib/test/test_sqlite3/test_dbapi.py b/Lib/test/test_sqlite3/test_dbapi.py index 695e213cdc7b..3013abfa730e 100644 --- a/Lib/test/test_sqlite3/test_dbapi.py +++ b/Lib/test/test_sqlite3/test_dbapi.py @@ -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: