mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-25 17:36:18 +03:00
9 lines
149 B
Python
9 lines
149 B
Python
from __future__ import annotations
|
|
|
|
from .helper import hopper
|
|
|
|
|
|
def test_sanity():
|
|
data = hopper().tobytes()
|
|
assert isinstance(data, bytes)
|