diff --git a/test_convert_command.py b/test_convert_command.py index 7bd7e47..9494d2e 100644 --- a/test_convert_command.py +++ b/test_convert_command.py @@ -6,13 +6,12 @@ class ConvertCommandTestCase(ShellCommandSharedTestCase): - """Test the ConvertCommand class. - """ + """Test the ConvertCommand class.""" def setUp(self): - """Initialisation. Make sure the input and output options are - explicitly set otherwise they hang around from previous tests. - """ + """Set up for test.""" + # Make sure the input and output options are explicitly set, + # otherwise they hang around from previous tests. self.command = ConvertCommand( input_options=["in.pdf[12]"], output_options=["out.png"]) self.expected_executable = shutil.which("convert") @@ -40,8 +39,7 @@ ] def tearDown(self): - """Cleanup. - """ + """Clean up after test.""" self.command = None