From c6f7b47446de3e9b0e4bc040e1566a3f87a3bc29 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 22 Feb 2026 13:48:36 +0000 Subject: [PATCH] Fix e2e test for adaptive first batch size test_large_batch_streaming expected 4 batches (200/50) but the adaptive first batch splits the first batch into 5+45, producing 5 batches total. --- tests/e2e/test_full_workflows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/test_full_workflows.py b/tests/e2e/test_full_workflows.py index 867eb69..f2b5bee 100644 --- a/tests/e2e/test_full_workflows.py +++ b/tests/e2e/test_full_workflows.py @@ -80,7 +80,7 @@ async def test_large_batch_streaming( batches = [l for l in lines if l["type"] == "batch"] complete = lines[-1] - assert len(batches) == 4 + assert len(batches) == 5 # first batch is smaller (FIRST_BATCH_SIZE=5), then 4x50 assert complete["total"] == 200