We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7b2a65 commit eddbdd2Copy full SHA for eddbdd2
1 file changed
Tests/test_file_png.py
@@ -233,6 +233,7 @@ def test_interlace(self) -> None:
233
)
234
def test_bit_depth(self, test_file: str, expected_bit_depth: int) -> None:
235
with Image.open(test_file) as im:
236
+ assert isinstance(im, PngImagePlugin.PngImageFile)
237
assert im.bit_depth == expected_bit_depth
238
239
def test_load_transparent_p(self) -> None:
0 commit comments