From ec41aa7fe400832dc100d9e11334c03b77364c44 Mon Sep 17 00:00:00 2001 From: Evans Mungai Date: Thu, 11 Jun 2026 17:42:34 +0100 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Evans Mungai --- internal/testmode/testmode.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/testmode/testmode.go b/internal/testmode/testmode.go index 47b75fa81..d080548b7 100644 --- a/internal/testmode/testmode.go +++ b/internal/testmode/testmode.go @@ -26,7 +26,7 @@ package testmode // from production code paths that need to behave differently under test. // Backed by a compile-time const (see mode_on.go / mode_off.go) so branches // gated on it dead-code-eliminate in release builds. -// Remove this function in Helm v5. Any functionality needing it should be revised +// Remove this function in Helm v5. Any functionality needing it should be revised. func IsTestMode() bool { return testMode }