chore: fix flake8 warnings in test_haiku.py

Refs: OPS-70 OPS-81
This commit is contained in:
Christoph J. Scherr 2025-03-23 13:35:20 +01:00
parent 0c0554e931
commit 08a7bd45ec
No known key found for this signature in database
GPG key ID: 9EB784BB202BB7BB

View file

@ -61,7 +61,8 @@ def test_request_haiku_respondse_bad(httpserver: HTTPServer):
with pytest.raises(requests.exceptions.JSONDecodeError):
httpserver.expect_request(
"/testhaiku").respond_with_data("this is completely wrong" + ("A" * 50 + "\n") * 20)
"/testhaiku").respond_with_data(
"this is completely wrong" + ("A" * 50 + "\n") * 20)
_haiku = Haiku.request_haiku(
Haiku.request_haiku(
"apple banana papaya", url=httpserver.url_for("/testhaiku"))