self.g['x'] = 'x' * 10000
size1 = os.path.getsize(filename)
- self.assertGreater(size1, size0)
+ self.assertGreaterEqual(size1, size0)
del self.g['x']
# 'size' is supposed to be the same even after deleting an entry.
self.g.reorganize()
size2 = os.path.getsize(filename)
- self.assertLess(size2, size1)
+ self.assertLessEqual(size2, size1)
self.assertGreaterEqual(size2, size0)
def test_context_manager(self):
--- /dev/null
+Fix test_dbm_gnu for gdbm 1.15. Using gdbm 1.15, creating a database creates
+a file of 16 MiB. Adding a small entry and then modifying the small entry
+doesn't change the file size. Modify test_dbm_gnu to be less strict: allow
+that the file size doesn't change.