Skip to content

Commit 00eabc2

Browse files
committed
address trailing line too long issue
1 parent 3a71406 commit 00eabc2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

test/unit/test_ldc_hook.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,9 @@ def test_get_corpus_file_returns_response(monkeypatch):
127127
"""Ensure that the file download is created appropriately."""
128128
session = MagicMock(spec=requests.Session)
129129
login_page = make_login_page_response()
130-
download_response = make_download_response(200, {"Content-Disposition": "attachment; filename=example.zip"})
130+
download_response = make_download_response(
131+
200, {"Content-Disposition": "attachment; filename=example.zip"}
132+
)
131133

132134
session.get.side_effect = [login_page, download_response]
133135
session.prepare_request.return_value = MagicMock()

0 commit comments

Comments
 (0)