From cf9eb28f77032b152575cd2b77b03127cd7a51aa Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 9 Apr 2025 02:33:00 +0000 Subject: [PATCH] chore(tests): improve enum examples --- tests/api_resources/commits/test_test_results.py | 4 ++-- tests/api_resources/inference_pipelines/test_test_results.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/api_resources/commits/test_test_results.py b/tests/api_resources/commits/test_test_results.py index da776599..83853215 100644 --- a/tests/api_resources/commits/test_test_results.py +++ b/tests/api_resources/commits/test_test_results.py @@ -31,7 +31,7 @@ def test_method_list_with_all_params(self, client: Openlayer) -> None: include_archived=True, page=1, per_page=1, - status="running", + status="passing", type="integrity", ) assert_matches_type(TestResultListResponse, test_result, path=["response"]) @@ -85,7 +85,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncOpenlayer) - include_archived=True, page=1, per_page=1, - status="running", + status="passing", type="integrity", ) assert_matches_type(TestResultListResponse, test_result, path=["response"]) diff --git a/tests/api_resources/inference_pipelines/test_test_results.py b/tests/api_resources/inference_pipelines/test_test_results.py index 2d5bc065..210aa423 100644 --- a/tests/api_resources/inference_pipelines/test_test_results.py +++ b/tests/api_resources/inference_pipelines/test_test_results.py @@ -30,7 +30,7 @@ def test_method_list_with_all_params(self, client: Openlayer) -> None: inference_pipeline_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", page=1, per_page=1, - status="running", + status="passing", type="integrity", ) assert_matches_type(TestResultListResponse, test_result, path=["response"]) @@ -83,7 +83,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncOpenlayer) - inference_pipeline_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", page=1, per_page=1, - status="running", + status="passing", type="integrity", ) assert_matches_type(TestResultListResponse, test_result, path=["response"])