Pillow/Tests/test_image_tobytes.py
2024-01-25 22:18:46 +11:00

9 lines
157 B
Python

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