From 4c6169e2247f4f0cecd2dc002af9f3a8587601e9 Mon Sep 17 00:00:00 2001 From: Gaurav Gogia <16029099+gaurav-gogia@users.noreply.github.com> Date: Wed, 10 Mar 2021 11:08:50 +0530 Subject: [PATCH] removed fmt.Println --- test/e2e/help/help_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/e2e/help/help_test.go b/test/e2e/help/help_test.go index 67f002679..6fc056373 100644 --- a/test/e2e/help/help_test.go +++ b/test/e2e/help/help_test.go @@ -16,7 +16,6 @@ package help_test import ( - "fmt" "io" "path/filepath" @@ -55,7 +54,6 @@ var _ = Describe("Help", func() { Describe("terrascan is run without any command", func() { It("should print all supported commands and exit with status code 0", func() { session = helper.RunCommand(terrascanBinaryPath, outWriter, errWriter) - fmt.Println(filepath.Join("golden", "help_command.txt")) helpUtils.ValidateExitCodeAndOutput(session, helper.ExitCodeZero, filepath.Join("golden", "help_command.txt"), true) }) })