diff --git a/tests/api_resources/sandbox/test_directory.py b/tests/api_resources/sandbox/test_directory.py index 3d6ba5f3..ef7776db 100644 --- a/tests/api_resources/sandbox/test_directory.py +++ b/tests/api_resources/sandbox/test_directory.py @@ -23,14 +23,14 @@ class TestDirectory: @parametrize def test_method_create(self, client: Finch) -> None: directory = client.sandbox.directory.create( - body=[{}, {}, {}], + body=[{}], ) assert_matches_type(DirectoryCreateResponse, directory, path=["response"]) @parametrize def test_raw_response_create(self, client: Finch) -> None: response = client.sandbox.directory.with_raw_response.create( - body=[{}, {}, {}], + body=[{}], ) assert response.http_request.headers.get("X-Stainless-Lang") == "python" directory = response.parse() @@ -45,14 +45,14 @@ class TestAsyncDirectory: @parametrize async def test_method_create(self, client: AsyncFinch) -> None: directory = await client.sandbox.directory.create( - body=[{}, {}, {}], + body=[{}], ) assert_matches_type(DirectoryCreateResponse, directory, path=["response"]) @parametrize async def test_raw_response_create(self, client: AsyncFinch) -> None: response = await client.sandbox.directory.with_raw_response.create( - body=[{}, {}, {}], + body=[{}], ) assert response.http_request.headers.get("X-Stainless-Lang") == "python" directory = response.parse() diff --git a/tests/api_resources/sandbox/test_employment.py b/tests/api_resources/sandbox/test_employment.py index 3995c21a..9a1c9bf2 100644 --- a/tests/api_resources/sandbox/test_employment.py +++ b/tests/api_resources/sandbox/test_employment.py @@ -94,7 +94,7 @@ def test_method_update_with_all_params(self, client: Finch) -> None: manager={"id": "string"}, middle_name="string", source_id="string", - start_date="string", + start_date="3/4/2020", title="string", ) assert_matches_type(EmploymentUpdateResponse, employment, path=["response"]) @@ -188,7 +188,7 @@ async def test_method_update_with_all_params(self, client: AsyncFinch) -> None: manager={"id": "string"}, middle_name="string", source_id="string", - start_date="string", + start_date="3/4/2020", title="string", ) assert_matches_type(EmploymentUpdateResponse, employment, path=["response"]) diff --git a/tests/api_resources/sandbox/test_individual.py b/tests/api_resources/sandbox/test_individual.py index 21f4affc..8a32a64c 100644 --- a/tests/api_resources/sandbox/test_individual.py +++ b/tests/api_resources/sandbox/test_individual.py @@ -31,7 +31,7 @@ def test_method_update(self, client: Finch) -> None: def test_method_update_with_all_params(self, client: Finch) -> None: individual = client.sandbox.individual.update( "string", - dob="string", + dob="12/20/1989", emails=[ { "data": "string", @@ -107,7 +107,7 @@ async def test_method_update(self, client: AsyncFinch) -> None: async def test_method_update_with_all_params(self, client: AsyncFinch) -> None: individual = await client.sandbox.individual.update( "string", - dob="string", + dob="12/20/1989", emails=[ { "data": "string",