mirror of https://github.com/python/cpython
gh-101947: Remove size check from sqlite3 serialize test (#102914)
The size of the returned data is too implementation specific.
This commit is contained in:
parent
3d7eb66c96
commit
61405da9a5
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue