From 4d2aebe3ed64764c87f03d67d6bd224f96450ba3 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Sat, 16 May 2026 14:51:22 -0400 Subject: [PATCH] =?UTF-8?q?test(similarity):=20update=20default-batch=20as?= =?UTF-8?q?sertion=205=E2=86=9225?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Follows ca1bc5a, which raised the worker batch default. The defaults test pinned the old value; align it with the intended new default. Co-Authored-By: Claude Opus 4.7 (1M context) --- internal/similarity/worker_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/similarity/worker_test.go b/internal/similarity/worker_test.go index 3dfa0994..8e29c003 100644 --- a/internal/similarity/worker_test.go +++ b/internal/similarity/worker_test.go @@ -13,8 +13,8 @@ func TestNewWorker_DefaultsMatchSpec(t *testing.T) { if w.tick != 1*time.Hour { t.Errorf("tick = %v, want 1h", w.tick) } - if w.batch != 5 { - t.Errorf("batch = %d, want 5", w.batch) + if w.batch != 25 { + t.Errorf("batch = %d, want 25", w.batch) } if w.topK != 20 { t.Errorf("topK = %d, want 20", w.topK)