diff --git a/tests/api_resources/hris/benefits/test_individuals.py b/tests/api_resources/hris/benefits/test_individuals.py index afc8a2e3..d8677fa1 100644 --- a/tests/api_resources/hris/benefits/test_individuals.py +++ b/tests/api_resources/hris/benefits/test_individuals.py @@ -43,12 +43,12 @@ def test_method_enroll_many_with_all_params(self, client: Finch) -> None: "catch_up": False, "company_contribution": { "amount": 400, - "type": "fixed", + "type": "percent", }, "effective_date": parse_date("2025-01-01"), "employee_deduction": { "amount": 1000, - "type": "fixed", + "type": "percent", }, }, "individual_id": "d02a6346-1f08-4312-a064-49ff3cafaa7a", @@ -241,12 +241,12 @@ async def test_method_enroll_many_with_all_params(self, async_client: AsyncFinch "catch_up": False, "company_contribution": { "amount": 400, - "type": "fixed", + "type": "percent", }, "effective_date": parse_date("2025-01-01"), "employee_deduction": { "amount": 1000, - "type": "fixed", + "type": "percent", }, }, "individual_id": "d02a6346-1f08-4312-a064-49ff3cafaa7a", diff --git a/tests/api_resources/sandbox/connections/test_accounts.py b/tests/api_resources/sandbox/connections/test_accounts.py index 561aa3ba..5ff83d69 100644 --- a/tests/api_resources/sandbox/connections/test_accounts.py +++ b/tests/api_resources/sandbox/connections/test_accounts.py @@ -72,7 +72,7 @@ def test_method_update(self, client: Finch) -> None: @parametrize def test_method_update_with_all_params(self, client: Finch) -> None: account = client.sandbox.connections.accounts.update( - connection_status="pending", + connection_status="reauth", ) assert_matches_type(AccountUpdateResponse, account, path=["response"]) @@ -152,7 +152,7 @@ async def test_method_update(self, async_client: AsyncFinch) -> None: @parametrize async def test_method_update_with_all_params(self, async_client: AsyncFinch) -> None: account = await async_client.sandbox.connections.accounts.update( - connection_status="pending", + connection_status="reauth", ) assert_matches_type(AccountUpdateResponse, account, path=["response"])