Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions tests/api_resources/plans/test_external_plan_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def test_path_params_update(self, client: Orb) -> None:
):
client.plans.external_plan_id.with_raw_response.update(
other_external_plan_id="",
external_plan_id="",
)

@parametrize
Expand Down Expand Up @@ -156,7 +155,6 @@ async def test_path_params_update(self, async_client: AsyncOrb) -> None:
):
await async_client.plans.external_plan_id.with_raw_response.update(
other_external_plan_id="",
external_plan_id="",
)

@parametrize
Expand Down
2 changes: 0 additions & 2 deletions tests/api_resources/test_customers.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,6 @@ def test_path_params_update_by_external_id(self, client: Orb) -> None:
with pytest.raises(ValueError, match=r"Expected a non-empty value for `id` but received ''"):
client.customers.with_raw_response.update_by_external_id(
id="",
external_customer_id="",
)


Expand Down Expand Up @@ -1052,5 +1051,4 @@ async def test_path_params_update_by_external_id(self, async_client: AsyncOrb) -
with pytest.raises(ValueError, match=r"Expected a non-empty value for `id` but received ''"):
await async_client.customers.with_raw_response.update_by_external_id(
id="",
external_customer_id="",
)