From 89b8687d94227ce20ffa12efb285ec0c7fccaca8 Mon Sep 17 00:00:00 2001 From: Allan Nava Date: Wed, 26 Jun 2024 13:22:36 +0200 Subject: [PATCH] removed useless log --- test/a_main_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/a_main_test.go b/test/a_main_test.go index 3b10caf..ac9cb25 100644 --- a/test/a_main_test.go +++ b/test/a_main_test.go @@ -3,7 +3,6 @@ package test import ( "os" "testing" - "log" "github.com/HiWay-Media/compress-go/compress" ) @@ -21,7 +20,7 @@ func TestMain(m *testing.M) { func TestNewCompress(t *testing.T) { c, err := GetCompress() if err != nil { - log.Println("error getComrpess", err.Error()) + //log.Println("error getComrpess", err.Error()) t.Fatalf(err.Error()) } c.IsDebug()