From 1fa418c6c1c33117308e3d94f18f8fc1a9193393 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 27 Nov 2014 10:36:16 -0500 Subject: Try out pylint spelling. Kinda noisy, but fixed some stuff. --- tests/test_misc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_misc.py') diff --git a/tests/test_misc.py b/tests/test_misc.py index 977378d5..7b7d51d0 100644 --- a/tests/test_misc.py +++ b/tests/test_misc.py @@ -34,11 +34,11 @@ class RemoveFileTest(CoverageTest): """Tests of misc.file_be_gone.""" def test_remove_nonexistent_file(self): - # it's ok to try to remove a file that doesn't exist. + # It's OK to try to remove a file that doesn't exist. file_be_gone("not_here.txt") def test_remove_actual_file(self): - # it really does remove a file that does exist. + # It really does remove a file that does exist. self.make_file("here.txt", "We are here, we are here, we are here!") file_be_gone("here.txt") self.assert_doesnt_exist("here.txt") -- cgit v1.2.1