4d2aebe3ed
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) <noreply@anthropic.com>
23 lines
417 B
Go
23 lines
417 B
Go
package similarity
|
|
|
|
import (
|
|
"io"
|
|
"log/slog"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestNewWorker_DefaultsMatchSpec(t *testing.T) {
|
|
logger := slog.New(slog.NewTextHandler(io.Discard, nil))
|
|
w := NewWorker(nil, nil, logger)
|
|
if w.tick != 1*time.Hour {
|
|
t.Errorf("tick = %v, want 1h", w.tick)
|
|
}
|
|
if w.batch != 25 {
|
|
t.Errorf("batch = %d, want 25", w.batch)
|
|
}
|
|
if w.topK != 20 {
|
|
t.Errorf("topK = %d, want 20", w.topK)
|
|
}
|
|
}
|