]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-101947: Remove size check from sqlite3 serialize test (#102914)
authorErlend E. Aasland <erlend.aasland@protonmail.com>
Wed, 22 Mar 2023 13:05:08 +0000 (14:05 +0100)
committerGitHub <noreply@github.com>
Wed, 22 Mar 2023 13:05:08 +0000 (14:05 +0100)
The size of the returned data is too implementation specific.

Lib/test/test_sqlite3/test_dbapi.py

index 695e213cdc7b752b4130b6ae84cf64d6c9fba008..3013abfa730ed53c21685a16c8faa262a3f00891 100644 (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: