From 0c4dad844c1bacc5d4fcd78ec46239654d576617 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sat, 13 Feb 2016 13:44:17 -0500 Subject: Fixed docstring and comments in TestJSONUtils. --- tests/test_lps_gen.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/test_lps_gen.py') 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) -- cgit v1.2.3