From fdf0be484ea765ad7b9820c29c303b6e73b70f47 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 24 May 2026 12:45:33 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- studio/backend/tests/test_sampling_params_routing.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/studio/backend/tests/test_sampling_params_routing.py b/studio/backend/tests/test_sampling_params_routing.py index 27f430f8d3..b0d0c5c3b4 100644 --- a/studio/backend/tests/test_sampling_params_routing.py +++ b/studio/backend/tests/test_sampling_params_routing.py @@ -385,9 +385,7 @@ def test_openai_responses_forwards_service_tier(monkeypatch): assert body.get("service_tier") == "priority", body -@pytest.mark.parametrize( - "value", ["auto", "default", "flex", "scale", "priority"] -) +@pytest.mark.parametrize("value", ["auto", "default", "flex", "scale", "priority"]) def test_openai_responses_accepts_full_service_tier_enum(monkeypatch, value): """`openai-python`'s ResponseCreateParams declares `Optional[Literal["auto", "default", "flex", "scale", "priority"]]`