Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 12, 2024
1 parent c3b56c4 commit b633bf7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/http/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ class TestClient(unittest.TestCase):

def test_http(self) -> None:
response = client(
host=b"google.com",
host=b'google.com',
port=80,
scheme=b"http",
path=b"/",
method=b"GET",
content_type=b"text/html",
scheme=b'http',
path=b'/',
method=b'GET',
content_type=b'text/html',
)
assert response is not None
self.assertEqual(response.code, b"301")
self.assertEqual(response.code, b'301')

def test_client(self) -> None:
response = client(
Expand Down

0 comments on commit b633bf7

Please sign in to comment.