Unsafe memory options

This commit is contained in:
Ege Emir Özkan
2020-08-23 01:49:15 +03:00
parent 6f9544f092
commit 018614dea5
2 changed files with 8 additions and 3 deletions

View File

@@ -200,7 +200,7 @@ class DatabaseMassInsert(unittest.TestCase):
self.objs = [MassCommit('cat') for _ in range(30)]
def testMassCreate(self):
create_many_entries(self.objs)
create_many_entries(self.objs, protect_memory=False)
def tearDown(self) -> None:
[obj.remove_entry() for obj in self.objs]