From e683487ea8695363307776d00c7bf410f5f2cdb0 Mon Sep 17 00:00:00 2001 From: Arthur Diniz Date: Mon, 24 Mar 2025 23:29:12 +0000 Subject: [PATCH] Set Git messages to English for TestRemoteLoad_LocalProtocol Ensure consistent error message matching by setting LC_ALL=C in TestRemoteLoad_LocalProtocol, preventing locale-based variations in Git output. Signed-off-by: Arthur Diniz --- api/krusty/remoteloader_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/krusty/remoteloader_test.go b/api/krusty/remoteloader_test.go index 8c96b6a2f..2d9af5c59 100644 --- a/api/krusty/remoteloader_test.go +++ b/api/krusty/remoteloader_test.go @@ -282,6 +282,8 @@ resources: }, } + t.Setenv("LC_ALL", "C") + for _, test := range tests { t.Run(test.name, func(t *testing.T) { if test.skip {