Skip to content

Commit 714c615

Browse files
committed
format
1 parent b45b9f7 commit 714c615

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/compas/test_iotools.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ def test_open_file_object_text(path_text):
5656

5757

5858
def test_open_file_memory_stream():
59-
text = b"All Gaul is divided into three parts, one of which the Belgae inhabit, the Aquitani another, those who in their own language are called Celts, in our Gauls, the third." # noqa: E501
59+
text = (
60+
b"All Gaul is divided into three parts, one of which the Belgae inhabit, the Aquitani another, those who in their own language are called Celts, in our Gauls, the third." # noqa: E501
61+
)
6062
data = io.BytesIO(text)
6163
with _iotools.open_file(data, mode="rb") as f:
6264
assert f.read() == text

0 commit comments

Comments
 (0)