summaryrefslogtreecommitdiff
path: root/Lib/test/test_sqlite3/test_dbapi.py
diff options
context:
space:
mode:
authorErlend E. Aasland <erlend.aasland@protonmail.com>2023-03-22 14:05:08 +0100
committerGitHub <noreply@github.com>2023-03-22 14:05:08 +0100
commit61405da9a5689f554aa53929a2a9c168cab6056b (patch)
treec5df2177e0542999afb98fedbde8e8d37cdf63a4 /Lib/test/test_sqlite3/test_dbapi.py
parent3d7eb66c963c0c86021738271483bef27c425b17 (diff)
downloadcpython-git-61405da9a5689f554aa53929a2a9c168cab6056b.tar.gz
gh-101947: Remove size check from sqlite3 serialize test (#102914)
The size of the returned data is too implementation specific.
Diffstat (limited to 'Lib/test/test_sqlite3/test_dbapi.py')
-rw-r--r--Lib/test/test_sqlite3/test_dbapi.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_sqlite3/test_dbapi.py b/Lib/test/test_sqlite3/test_dbapi.py
index 695e213cdc..3013abfa73 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: