]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-101947: Remove size check from sqlite3 serialize test (GH-102914)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 22 Mar 2023 13:45:28 +0000 (06:45 -0700)
committerGitHub <noreply@github.com>
Wed, 22 Mar 2023 13:45:28 +0000 (06:45 -0700)
The size of the returned data is too implementation specific.
(cherry picked from commit 61405da9a5689f554aa53929a2a9c168cab6056b)

Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Lib/test/test_sqlite3/test_dbapi.py

index 2aea1105a25101d78e9956de1d21b51b168a1495..9d94ddda95bd4d1adc8f6f296cacfc405506345b 100644 (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: