diff options
Diffstat (limited to 'src/testing/testing.go')
| -rw-r--r-- | src/testing/testing.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/testing/testing.go b/src/testing/testing.go index 3dcc5afef9..16354ae95f 100644 --- a/src/testing/testing.go +++ b/src/testing/testing.go @@ -520,7 +520,8 @@ func (c *common) Skipf(format string, args ...interface{}) { } // SkipNow marks the test as having been skipped and stops its execution. -// If a test fails (see Error, Errorf, Fail) and is then skipped, it is still considered to have failed. +// If a test fails (see Error, Errorf, Fail) and is then skipped, +// it is still considered to have failed. // Execution will continue at the next test or benchmark. See also FailNow. // SkipNow must be called from the goroutine running the test, not from // other goroutines created during the test. Calling SkipNow does not stop |
