From ffe2384ec9446ac4eba84fd57cd5b17b06cc75de Mon Sep 17 00:00:00 2001 From: Kwang100 Date: Wed, 26 Oct 2016 00:30:34 -0400 Subject: [PATCH] Correct teardown function: remove temporary directory after test completed --- tests/test_repository_lib.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_repository_lib.py b/tests/test_repository_lib.py index 87dcb8bb..0fd419cd 100755 --- a/tests/test_repository_lib.py +++ b/tests/test_repository_lib.py @@ -81,8 +81,7 @@ def tearDownClass(cls): # Remove the temporary repository directory, which should contain all the # metadata, targets, and key files generated for the test cases. - # shutil.rmtree(cls.temporary_directory) - pass + shutil.rmtree(cls.temporary_directory) def setUp(self):