From 1838ec0a11e4e38feb6ccb2e59eaceafdd90a24f Mon Sep 17 00:00:00 2001 From: Viktor Oreshkin Date: Tue, 6 Sep 2022 09:46:05 +0300 Subject: [PATCH] fix: make func names in app_list_test consistent Signed-off-by: Viktor Oreshkin --- pkg/app/app_list_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/app/app_list_test.go b/pkg/app/app_list_test.go index 4ed6c603..bfb08b04 100644 --- a/pkg/app/app_list_test.go +++ b/pkg/app/app_list_test.go @@ -17,7 +17,7 @@ import ( "github.com/helmfile/helmfile/pkg/testutil" ) -func testListWithConfig(t *testing.T, cfg configImpl) { +func testListWithEnvironment(t *testing.T, cfg configImpl) { type testcase struct { environment string ns string @@ -249,9 +249,9 @@ database my-app true true bitnami/postg func TestListWithEnvironment(t *testing.T) { t.Run("with prepared charts", func(t *testing.T) { - testListWithConfig(t, configImpl{withPreparedCharts: true}) + testListWithEnvironment(t, configImpl{withPreparedCharts: true}) }) t.Run("without prepared charts", func(t *testing.T) { - testListWithConfig(t, configImpl{withPreparedCharts: false}) + testListWithEnvironment(t, configImpl{withPreparedCharts: false}) }) }