From cd231106cc28c83e1e6501f3fd154d947975fbc6 Mon Sep 17 00:00:00 2001 From: Liz Rice Date: Mon, 18 Feb 2019 08:46:26 +0000 Subject: [PATCH] Improve comment Tests could easily be marked "skip" because the user doesn't want to run them in their environment, and in this common case the set of tests will be non-nil --- check/test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check/test.go b/check/test.go index 0213913..7a74634 100644 --- a/check/test.go +++ b/check/test.go @@ -145,7 +145,7 @@ func (ts *tests) execute(s string) *testOutput { finalOutput := &testOutput{} // If no tests are defined return with empty finalOutput. - // This is usually the case for checks of type: "skip". + // This may be the case for checks of type: "skip". if ts == nil { return finalOutput }