From f0527c94bc41d652670a83e4d10e04e5194d08f5 Mon Sep 17 00:00:00 2001 From: Mathias Date: Sat, 4 Jul 2026 00:49:26 +0200 Subject: [PATCH] fix(test): bump TestRegisteredToolCount to 39 for tbd_ship (#40) The registered-tool-count lock still expected 38; tbd_ship makes 39. This is why the v0.6.0 CD check job went red (build+deploy skipped, pod stayed on v0.5.2). Count updated; task check green (exit 0). Co-Authored-By: Claude Opus 4.8 (1M context) --- internal/tools/registry_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tools/registry_test.go b/internal/tools/registry_test.go index 9961548..e9987bf 100644 --- a/internal/tools/registry_test.go +++ b/internal/tools/registry_test.go @@ -54,5 +54,5 @@ func TestEveryRegisteredToolIsDispatchable(t *testing.T) { // Lock the tool count so an accidental drop of a registration in RegisterAll // (the single source main.go and this test share) fails loudly. func TestRegisteredToolCount(t *testing.T) { - assert.Len(t, buildRegistry().Tools(), 38) + assert.Len(t, buildRegistry().Tools(), 39) }