Do not pass a kwarg in test

This commit is contained in:
Eric Torres 2019-05-01 12:08:13 -07:00
parent f56bc1ca2f
commit dea221a774

View File

@ -100,7 +100,7 @@ class TestHierarchyCleanup(unittest.TestCase):
self.mocked_shutil["rmtree"].avoids_symlink_attacks = False
h = Hierarchy("/tmp/backup")
h.cleanup(remove_snapshots=True)
h.cleanup()
self.mocked_shutil["rmtree"].assert_not_called()