Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavsingh committed Aug 10, 2024
1 parent ec525d6 commit 6f0562d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/http/web/test_web_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ async def test_pac_file_served_from_disk(self) -> None:
self._conn.send.assert_called_once_with(
build_http_response(
200,
reason=b"OK",
reason=b'OK',
headers={
b"Content-Type": b"application/x-ns-proxy-autoconfig",
b'Content-Type': b'application/x-ns-proxy-autoconfig',
},
body=self.expected_response,
conn_close=True,
Expand Down

0 comments on commit 6f0562d

Please sign in to comment.