Skip to content

Commit 7a14d29

Browse files
chore: improve example values
1 parent 56c9236 commit 7a14d29

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/api_resources/test_routes_for_agency.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ class TestRoutesForAgency:
2020
@parametrize
2121
def test_method_list(self, client: OnebusawaySDK) -> None:
2222
routes_for_agency = client.routes_for_agency.list(
23-
"agencyID",
23+
"40",
2424
)
2525
assert_matches_type(RoutesForAgencyListResponse, routes_for_agency, path=["response"])
2626

2727
@parametrize
2828
def test_raw_response_list(self, client: OnebusawaySDK) -> None:
2929
response = client.routes_for_agency.with_raw_response.list(
30-
"agencyID",
30+
"40",
3131
)
3232

3333
assert response.is_closed is True
@@ -38,7 +38,7 @@ def test_raw_response_list(self, client: OnebusawaySDK) -> None:
3838
@parametrize
3939
def test_streaming_response_list(self, client: OnebusawaySDK) -> None:
4040
with client.routes_for_agency.with_streaming_response.list(
41-
"agencyID",
41+
"40",
4242
) as response:
4343
assert not response.is_closed
4444
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
@@ -64,14 +64,14 @@ class TestAsyncRoutesForAgency:
6464
@parametrize
6565
async def test_method_list(self, async_client: AsyncOnebusawaySDK) -> None:
6666
routes_for_agency = await async_client.routes_for_agency.list(
67-
"agencyID",
67+
"40",
6868
)
6969
assert_matches_type(RoutesForAgencyListResponse, routes_for_agency, path=["response"])
7070

7171
@parametrize
7272
async def test_raw_response_list(self, async_client: AsyncOnebusawaySDK) -> None:
7373
response = await async_client.routes_for_agency.with_raw_response.list(
74-
"agencyID",
74+
"40",
7575
)
7676

7777
assert response.is_closed is True
@@ -82,7 +82,7 @@ async def test_raw_response_list(self, async_client: AsyncOnebusawaySDK) -> None
8282
@parametrize
8383
async def test_streaming_response_list(self, async_client: AsyncOnebusawaySDK) -> None:
8484
async with async_client.routes_for_agency.with_streaming_response.list(
85-
"agencyID",
85+
"40",
8686
) as response:
8787
assert not response.is_closed
8888
assert response.http_request.headers.get("X-Stainless-Lang") == "python"

0 commit comments

Comments
 (0)