From 32741b9662aae587e6344a9b7cdde6c9e69f0613 Mon Sep 17 00:00:00 2001 From: tfreville Date: Mon, 9 Mar 2020 14:42:16 +0100 Subject: [PATCH] Clean logs --- run_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/run_test.go b/run_test.go index 94dd440..bce07ff 100644 --- a/run_test.go +++ b/run_test.go @@ -5,7 +5,6 @@ import ( "fmt" "io" "io/ioutil" - "log" "os" "regexp" "strings" @@ -287,9 +286,7 @@ func testSucceedRun(t *testing.T, format string, concurrency int, expectedOutput suiteCtxReg := regexp.MustCompile(`suite_context.go:\d+`) expectedOutput = suiteCtxReg.ReplaceAllString(expectedOutput, `suite_context.go:0`) - log.Println("expected clean: " + expectedOutput) actual = suiteCtxReg.ReplaceAllString(actual, `suite_context.go:0`) - log.Println("actual clean: " + actual) assert.Equalf(t, expectedOutput, actual, "[%s]", actual) }