Skip to content

Commit 36d17c2

Browse files
committed
fix flaky test test_openai_responses_api_web_search_cost_tracking
1 parent b33c56c commit 36d17c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/logging_callback_tests/test_built_in_tools_cost_tracking.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,13 @@ async def test_openai_web_search_logging_cost_tracking(
115115
"tools_config,expected_context_size,stream",
116116
[
117117
(
118-
[{"type": "web_search_preview", "search_context_size": "high"}],
119-
"search_context_size_high",
118+
[{"type": "web_search_preview", "search_context_size": "low"}],
119+
"search_context_size_low",
120120
True,
121121
),
122122
(
123-
[{"type": "web_search_preview", "search_context_size": "high"}],
124-
"search_context_size_high",
123+
[{"type": "web_search_preview", "search_context_size": "low"}],
124+
"search_context_size_low",
125125
False,
126126
),
127127
([{"type": "web_search_preview"}], "search_context_size_medium", True),

0 commit comments

Comments
 (0)