summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2016-02-13 13:44:17 -0500
committerrsiddharth <rsd@gnu.org>2016-02-13 13:44:17 -0500
commit0c4dad844c1bacc5d4fcd78ec46239654d576617 (patch)
tree099e98bbfd74ff2b9f8fbbbb08fa4d8f204edcdf /tests
parent6bf8055a04f290329fda90a533348ede9a2b32a0 (diff)
Fixed docstring and comments in TestJSONUtils.
Diffstat (limited to 'tests')
-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)