Skip to content

Commit

Permalink
chore(internal): fix some typos (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] committed Dec 21, 2024
1 parent 4804606 commit 1e0f427
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,11 +345,11 @@ def test_default_query_option(self) -> None:
FinalRequestOptions(
method="get",
url="/foo",
params={"foo": "baz", "query_param": "overriden"},
params={"foo": "baz", "query_param": "overridden"},
)
)
url = httpx.URL(request.url)
assert dict(url.params) == {"foo": "baz", "query_param": "overriden", "key": api_key}
assert dict(url.params) == {"foo": "baz", "query_param": "overridden", "key": api_key}

def test_request_extra_json(self) -> None:
request = self.client._build_request(
Expand Down Expand Up @@ -1109,11 +1109,11 @@ def test_default_query_option(self) -> None:
FinalRequestOptions(
method="get",
url="/foo",
params={"foo": "baz", "query_param": "overriden", "key": api_key},
params={"foo": "baz", "query_param": "overridden", "key": api_key},
)
)
url = httpx.URL(request.url)
assert dict(url.params) == {"foo": "baz", "query_param": "overriden", "key": api_key}
assert dict(url.params) == {"foo": "baz", "query_param": "overridden", "key": api_key}

def test_request_extra_json(self) -> None:
request = self.client._build_request(
Expand Down Expand Up @@ -1601,7 +1601,7 @@ def test_get_platform(self) -> None:
import threading
from onebusaway._utils import asyncify
from onebusaway._base_client import get_platform
from onebusaway._base_client import get_platform
async def test_main() -> None:
result = await asyncify(get_platform)()
Expand Down

0 comments on commit 1e0f427

Please sign in to comment.