From fca2e307c9b9601d52574171eecacacd26cd5238 Mon Sep 17 00:00:00 2001 From: Andreas Paul Date: Thu, 25 Jan 2024 13:50:11 +0100 Subject: [PATCH] fix TestNoProxy --- g10k_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/g10k_test.go b/g10k_test.go index b7db24a..e85b068 100755 --- a/g10k_test.go +++ b/g10k_test.go @@ -3254,7 +3254,7 @@ func TestNoProxy(t *testing.T) { // fmt.Println(string(out)) expectedLines := []string{ - "found matching NO_PROXY URL, trying to disable http_proxy for git clone --mirror https://localgit.domain.tld/foo/bar.git /tmp/g10k/modules/https-__localgit.domain.tld_foo_bar.git", + "found matching NO_PROXY URL, trying to disable http_proxy and https_proxy env variables for git clone --mirror https://localgit.domain.tld/foo/bar.git /tmp/g10k/modules/https-__localgit.domain.tld_foo_bar.git", } for _, expectedLine := range expectedLines { if !strings.Contains(string(out), expectedLine) {