Skip to content

Commit

Permalink
fix linters
Browse files Browse the repository at this point in the history
  • Loading branch information
BurnzZ committed Jan 17, 2024
1 parent 895b418 commit 24b5446
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_page_inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -672,5 +672,7 @@ def test_http_or_browser_response() -> None:
response = AnyResponse(response=BrowserResponse(url=url, html=html, status=200))
assert response.status == 200

response = AnyResponse(response=HttpResponse(url=url, body=html.encode(), status=200))
assert response.status == 200
response = AnyResponse(
response=HttpResponse(url=url, body=html.encode(), status=200)
)
assert response.status == 200

0 comments on commit 24b5446

Please sign in to comment.