Pillow/Tests/test_image_tobytes.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
148 B
Python
Raw Normal View History

from __future__ import annotations
from .helper import hopper
def test_sanity():
data = hopper().tobytes()
assert isinstance(data, bytes)