Pillow/Tests/test_image_tobytes.py
Hugo van Kemenade 53c3cd9f8e isort Tests
2024-01-20 13:23:03 +02:00

9 lines
149 B
Python

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