diff --git a/images/tests.py b/images/tests.py index d1826d9..13f82ff 100644 --- a/images/tests.py +++ b/images/tests.py @@ -146,7 +146,7 @@ def test_listing_images_unauthorized(self): self.assertEqual(response.status_code, status.HTTP_401_UNAUTHORIZED) -class ImageDeleteTest(BaseImageTest): +class ImageDeleteTest(BaseImageTest): # pylint: disable=too-many-ancestors """Tests the deleting image. """ def test_image_delete(self): @@ -210,7 +210,7 @@ def test_image_delete_user_not_have_current_image(self): self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) -class ImageUpdateNotesTest(BaseImageTest): +class ImageUpdateNotesTest(BaseImageTest): # pylint: disable=too-many-ancestors """Tests the updating notes of image. """ def test_update_notes(self):