Skip to content

Commit

Permalink
style: apply automated linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
megalinter-bot committed Jun 16, 2023
1 parent b7a43d5 commit 10eb270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/safeds/data/image/containers/test_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ def test_should_return_blurred_jpg_image(self) -> None:
Path.unlink(Path(resolve_resource_path("image/blurredboy1.jpg")))
Path.unlink(Path(resolve_resource_path("image/blurredboy1.png")))


class TestCrop:
def test_should_crop_jpg_image(self) -> None:
image = Image.from_jpeg_file(resolve_resource_path("image/white.jpg"))
Expand All @@ -280,4 +281,3 @@ def test_should_crop_png_image(self) -> None:
image = image.crop(0, 0, 100, 100)
image2 = Image.from_png_file(resolve_resource_path("image/whiteCropped.png"))
assert image == image2

0 comments on commit 10eb270

Please sign in to comment.