From 57d85993cbbb823f2145f75b0a7a27e40d9aab22 Mon Sep 17 00:00:00 2001 From: Althaf M Date: Sat, 14 Dec 2024 23:22:28 +0000 Subject: [PATCH] remove debug statements Signed-off-by: Althaf M --- pkg/chartutil/dependencies_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkg/chartutil/dependencies_test.go b/pkg/chartutil/dependencies_test.go index 516239d27..ac8e4d76e 100644 --- a/pkg/chartutil/dependencies_test.go +++ b/pkg/chartutil/dependencies_test.go @@ -18,7 +18,6 @@ import ( "encoding/json" "os" "path/filepath" - "reflect" "sort" "strconv" "testing" @@ -256,7 +255,6 @@ func TestProcessDependencyImportValues(t *testing.T) { default: if pv != vv { t.Errorf("failed to match imported string value %q with expected %q for key %q", pv, vv, kk) - t.Error(reflect.TypeOf(pv)) } } } @@ -333,7 +331,6 @@ func TestProcessDependencyImportValuesMultiLevelPrecedence(t *testing.T) { default: if pv != vv { t.Errorf("failed to match imported string value %q with expected %q", pv, vv) - t.Error(reflect.TypeOf(pv)) } } }