diff --git a/tests/test_flip_image.py b/tests/test_flip_image.py index 2b8c68f0c2b50cbd429201c30da51a28408fbd6f..a657430ac458b10f771fefd41c2c4f60ca7b7727 100644 --- a/tests/test_flip_image.py +++ b/tests/test_flip_image.py @@ -7,7 +7,7 @@ from csst_proto.top_level_interface import flip_image, read_test_image class FlipImageTestCase(unittest.TestCase): def test_flip_image(self): - # flip test image + """ test flip image """ self.assertTrue( np.all(flip_image(read_test_image()) == np.array([[4, 3], [2, 1]])) ) diff --git a/tests/test_other_functions.py b/tests/test_other_functions.py index 6b773893ac8571420c0db0c9f3cb0fc584dbe712..b788c666db459758424d2ad0fb6e85219296bae1 100644 --- a/tests/test_other_functions.py +++ b/tests/test_other_functions.py @@ -4,6 +4,7 @@ from csst_proto.top_level_interface import a_demo_function class TestCaseDemoFunction(unittest.TestCase): + """ test demo function """ def test_demo_function(self): # flip test image self.assertTrue(