Pillow/Tests/test_image_tobytes.py

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

9 lines
149 B
Python
Raw Normal View History

from __future__ import annotations
2024-01-20 14:23:03 +03:00
from .helper import hopper
def test_sanity():
data = hopper().tobytes()
assert isinstance(data, bytes)