Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 45addb6

Browse files
stainless-app[bot]stainless-bot
authored andcommittedDec 17, 2024·
chore(internal): fix some typos (#799)
1 parent 0954c48 commit 45addb6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎tests/test_client.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -363,11 +363,11 @@ def test_default_query_option(self) -> None:
363363
FinalRequestOptions(
364364
method="get",
365365
url="/foo",
366-
params={"foo": "baz", "query_param": "overriden"},
366+
params={"foo": "baz", "query_param": "overridden"},
367367
)
368368
)
369369
url = httpx.URL(request.url)
370-
assert dict(url.params) == {"foo": "baz", "query_param": "overriden"}
370+
assert dict(url.params) == {"foo": "baz", "query_param": "overridden"}
371371

372372
def test_request_extra_json(self) -> None:
373373
request = self.client._build_request(
@@ -1228,11 +1228,11 @@ def test_default_query_option(self) -> None:
12281228
FinalRequestOptions(
12291229
method="get",
12301230
url="/foo",
1231-
params={"foo": "baz", "query_param": "overriden"},
1231+
params={"foo": "baz", "query_param": "overridden"},
12321232
)
12331233
)
12341234
url = httpx.URL(request.url)
1235-
assert dict(url.params) == {"foo": "baz", "query_param": "overriden"}
1235+
assert dict(url.params) == {"foo": "baz", "query_param": "overridden"}
12361236

12371237
def test_request_extra_json(self) -> None:
12381238
request = self.client._build_request(

0 commit comments

Comments
 (0)
Please sign in to comment.