mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
8 lines
148 B
Python
8 lines
148 B
Python
from __future__ import annotations
|
|
from .helper import hopper
|
|
|
|
|
|
def test_sanity():
|
|
data = hopper().tobytes()
|
|
assert isinstance(data, bytes)
|