From 9f7b5d29e6a470470a3c4705196f368b623f7116 Mon Sep 17 00:00:00 2001 From: Dong Gang Date: Fri, 10 Jul 2020 10:48:00 +0800 Subject: [PATCH] Fix the style error Signed-off-by: Dong Gang --- pkg/action/uninstall_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/action/uninstall_test.go b/pkg/action/uninstall_test.go index 7fe649464..3e1a3e42b 100644 --- a/pkg/action/uninstall_test.go +++ b/pkg/action/uninstall_test.go @@ -9,11 +9,11 @@ import ( func TestUninstall_deleteRelease(t *testing.T) { is := assert.New(t) rel := releaseStub() - rel.Chart =buildChart(withKeepAnnoManifestTemplate()) + rel.Chart = buildChart(withKeepAnnoManifestTemplate()) rel.Manifest = manifestWithKeepAnno config := actionConfigFixture(t) unisAction := NewUninstall(config) str, errs := unisAction.deleteRelease(rel) - is.Len(errs,0) - is.Equal("pod/pod-keep\n",str) + is.Len(errs, 0) + is.Equal("pod/pod-keep\n", str) }