summaryrefslogtreecommitdiffstats
path: root/tests/events_test.py
diff options
context:
space:
mode:
authorSiddharth Ravikumar <sravik@bgsu.edu>2015-02-18 23:48:40 -0500
committerSiddharth Ravikumar <sravik@bgsu.edu>2015-02-18 23:48:40 -0500
commit889ce1e91a887bd48fca5d1d41d441b42845c55f (patch)
tree72aa427851ee03759b32b89268c9ffe57ff9fa62 /tests/events_test.py
parent951a277e0e45cedfd05f4c1acbbc0c7cd1ca81df (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/events_test.py')
-rw-r--r--tests/events_test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/events_test.py b/tests/events_test.py
index 89b2033..5e5b13f 100644
--- a/tests/events_test.py
+++ b/tests/events_test.py
@@ -37,7 +37,7 @@ from combox.file import (relative_path, purge_dir,
from combox.silo import ComboxSilo
from tests.utils import (get_config, shardedp, dirp, renamedp,
- path_deletedp, rm_nodedirs)
+ path_deletedp, rm_nodedirs, rm_configdir)
class TestEvents(object):
@@ -242,3 +242,4 @@ class TestEvents(object):
silo.remove(self.TEST_FILE)
rm_nodedirs(self.config)
+ rm_configdir()