diff options
Diffstat (limited to 'tests/test_update_manpages.py')
-rw-r--r-- | tests/test_update_manpages.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_update_manpages.py b/tests/test_update_manpages.py index 0de85be9..12b19ec4 100644 --- a/tests/test_update_manpages.py +++ b/tests/test_update_manpages.py | |||
@@ -20,9 +20,9 @@ from release import update_manpages | |||
20 | 20 | ||
21 | 21 | ||
22 | class UpdateManpagesTest(unittest.TestCase): | 22 | class UpdateManpagesTest(unittest.TestCase): |
23 | """Tests the update-manpages code.""" | 23 | """Tests the update-manpages code.""" |
24 | 24 | ||
25 | def test_replace_regex(self): | 25 | def test_replace_regex(self): |
26 | """Check that replace_regex works.""" | 26 | """Check that replace_regex works.""" |
27 | data = '\n\033[1mSummary\033[m\n' | 27 | data = "\n\033[1mSummary\033[m\n" |
28 | self.assertEqual(update_manpages.replace_regex(data),'\nSummary\n') | 28 | self.assertEqual(update_manpages.replace_regex(data), "\nSummary\n") |