From 356dc08b983ee46332913c3762c9218bc365a51e Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Sat, 1 Nov 2025 18:24:07 +0200 Subject: [PATCH] tests : adjust parameters to be CI friendlier --- tools/server/tests/unit/test_completion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/server/tests/unit/test_completion.py b/tools/server/tests/unit/test_completion.py index acb893d495..3c0ce98973 100644 --- a/tools/server/tests/unit/test_completion.py +++ b/tools/server/tests/unit/test_completion.py @@ -374,7 +374,7 @@ def test_completion_parallel_slots(n_slots: int, n_requests: int): (256, 4, [80, 40, 80, 80], [True, True, True, True]), (256, 4, [70, 70, 70, 70], [False, False, False, False]), (256, 4, [90, 90, 40, 90], [False, False, True, False]), - (256, 4, [90, 90, 40, 80], [True, True, True, True]), + (256, 4, [90, 90, 40, 75], [True, True, True, True]), ], ) def test_completion_unified(n_ctx, n_slots, n_predict_vals, expected_success):