From 44421b7fe4a08cdd854b86823e649a03f04b72db Mon Sep 17 00:00:00 2001 From: Simon Baeumer Date: Fri, 19 Nov 2021 16:03:35 +0100 Subject: [PATCH] style --- pkg/runtime/runner.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/runtime/runner.go b/pkg/runtime/runner.go index 765c4218..5001e7e6 100644 --- a/pkg/runtime/runner.go +++ b/pkg/runtime/runner.go @@ -27,7 +27,6 @@ func (r *Runner) Run(tests []TestCase) <-chan TestResult { var wg sync.WaitGroup wg.Add(1) - go func(tests chan TestCase) { defer wg.Done() @@ -54,7 +53,6 @@ func (r *Runner) Run(tests []TestCase) <-chan TestResult { result.Node = node result.Tries = i - fmt.Println(result) if result.ValidationResult.Success { break