diff options
| author | Russ Cox <rsc@golang.org> | 2016-10-18 10:46:55 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2016-10-19 01:21:21 +0000 |
| commit | ebf827ded7d6997747c96ae8f0f4871c15090d49 (patch) | |
| tree | 12095fe3c75af0dd1b70eaba25ad49dea2198b59 /src/testing/testing.go | |
| parent | 321c312d8246dec6889f5fe334b6193c320baf0e (diff) | |
| download | go-ebf827ded7d6997747c96ae8f0f4871c15090d49.tar.xz | |
testing: wrap long comment line
Requested in CL 31324 review.
Change-Id: Ic81410e07cce07c6f3727bc46d86b6c54c15eca0
Reviewed-on: https://go-review.googlesource.com/31410
Reviewed-by: Rob Pike <r@golang.org>
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 |
