Skip to content

Commit 79baa5d

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
chore(internal): fix some typos (#658)
1 parent 4ca06b8 commit 79baa5d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -348,11 +348,11 @@ def test_default_query_option(self) -> None:
348348
FinalRequestOptions(
349349
method="get",
350350
url="/foo",
351-
params={"foo": "baz", "query_param": "overriden"},
351+
params={"foo": "baz", "query_param": "overridden"},
352352
)
353353
)
354354
url = httpx.URL(request.url)
355-
assert dict(url.params) == {"foo": "baz", "query_param": "overriden"}
355+
assert dict(url.params) == {"foo": "baz", "query_param": "overridden"}
356356

357357
def test_request_extra_json(self) -> None:
358358
request = self.client._build_request(
@@ -1236,11 +1236,11 @@ def test_default_query_option(self) -> None:
12361236
FinalRequestOptions(
12371237
method="get",
12381238
url="/foo",
1239-
params={"foo": "baz", "query_param": "overriden"},
1239+
params={"foo": "baz", "query_param": "overridden"},
12401240
)
12411241
)
12421242
url = httpx.URL(request.url)
1243-
assert dict(url.params) == {"foo": "baz", "query_param": "overriden"}
1243+
assert dict(url.params) == {"foo": "baz", "query_param": "overridden"}
12441244

12451245
def test_request_extra_json(self) -> None:
12461246
request = self.client._build_request(

0 commit comments

Comments
 (0)