summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/test_lps_gen.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_lps_gen.py b/tests/test_lps_gen.py
index f4f64b5..0efc345 100644
--- a/tests/test_lps_gen.py
+++ b/tests/test_lps_gen.py
@@ -94,18 +94,18 @@ class TestJSONUtils(object):
def teardown(self):
"""Cleans up things after each test in this class."""
- # Remove `speaker.ids` file if it exists.
+ # Remove `speakers.ids` file if it exists.
if path.isfile(self.ids_filename):
os.remove(self.ids_filename)
- # Remove `speaker.noids` file if it exists.
+ # Remove `speakers.noids` file if it exists.
if path.isfile(self.noids_filename):
os.remove(self.noids_filename)
@classmethod
def teardown_class(self):
- """Purge the mess created by this test."""
+ """Clean up the mess created by this test."""
# Change back to the old cwd
os.chdir(self.old_cwd)