Skip to content

Commit 7e79541

Browse files
chore(internal): minor test fixes (#608)
1 parent e6a10e3 commit 7e79541

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

tests/api_resources/plans/test_external_plan_id.py

-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def test_path_params_update(self, client: Orb) -> None:
6464
):
6565
client.plans.external_plan_id.with_raw_response.update(
6666
other_external_plan_id="",
67-
external_plan_id="",
6867
)
6968

7069
@parametrize
@@ -156,7 +155,6 @@ async def test_path_params_update(self, async_client: AsyncOrb) -> None:
156155
):
157156
await async_client.plans.external_plan_id.with_raw_response.update(
158157
other_external_plan_id="",
159-
external_plan_id="",
160158
)
161159

162160
@parametrize

tests/api_resources/test_customers.py

-2
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,6 @@ def test_path_params_update_by_external_id(self, client: Orb) -> None:
527527
with pytest.raises(ValueError, match=r"Expected a non-empty value for `id` but received ''"):
528528
client.customers.with_raw_response.update_by_external_id(
529529
id="",
530-
external_customer_id="",
531530
)
532531

533532

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

0 commit comments

Comments
 (0)