diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-02-18 23:48:40 -0500 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-02-18 23:48:40 -0500 |
commit | 889ce1e91a887bd48fca5d1d41d441b42845c55f (patch) | |
tree | 72aa427851ee03759b32b89268c9ffe57ff9fa62 /tests/file_test.py | |
parent | 951a277e0e45cedfd05f4c1acbbc0c7cd1ca81df (diff) |
All the test classes now call rm_configdir() in their teardown method.
modified: tests/config_test.py
modified: tests/crypto_test.py
modified: tests/events_test.py
modified: tests/file_test.py
modified: tests/silo_test.py
Diffstat (limited to 'tests/file_test.py')
-rw-r--r-- | tests/file_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/file_test.py b/tests/file_test.py index 04670f2..2c6dce0 100644 --- a/tests/file_test.py +++ b/tests/file_test.py @@ -27,7 +27,7 @@ from combox.config import get_nodedirs from combox.file import (split_data, glue_data, write_file, read_file, write_shards, read_shards, hash_file, rm_shards) -from tests.utils import get_config, rm_nodedirs +from tests.utils import get_config, rm_nodedirs, rm_configdir class TestFile(object): @@ -101,3 +101,4 @@ class TestFile(object): rm_shards(self.TEST_FILE, self.config) rm_nodedirs(self.config) + rm_configdir() |