Pillow/Tests/test_image_tobytes.py
2023-12-21 13:13:31 +02:00

8 lines
148 B
Python

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