From 3e751445a85c042c3f5d7f9d0d1c15ee9cf7de3a Mon Sep 17 00:00:00 2001 From: Dominik Braun Date: Sat, 5 Dec 2020 15:25:58 +0100 Subject: [PATCH] Use correct error message for failing test Signed-off-by: Dominik Braun --- pkg/repo/chartrepo_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/repo/chartrepo_test.go b/pkg/repo/chartrepo_test.go index 096f1b60d..bdd214b22 100644 --- a/pkg/repo/chartrepo_test.go +++ b/pkg/repo/chartrepo_test.go @@ -413,6 +413,6 @@ func TestEntry_URLWithTrailingSlash(t *testing.T) { e = Entry{URL: urlWithoutTrailingSlash} if e.URLWithTrailingSlash() != urlWithTrailingSlash { - t.Errorf("Expected repository URL without trailing slash") + t.Errorf("Expected repository URL with trailing slash") } }