]> Cypherpunks repositories - gostls13.git/commitdiff
testing: wrap long comment line
authorRuss Cox <rsc@golang.org>
Tue, 18 Oct 2016 14:46:55 +0000 (10:46 -0400)
committerRuss Cox <rsc@golang.org>
Wed, 19 Oct 2016 01:21:21 +0000 (01:21 +0000)
Requested in CL 31324 review.

Change-Id: Ic81410e07cce07c6f3727bc46d86b6c54c15eca0
Reviewed-on: https://go-review.googlesource.com/31410
Reviewed-by: Rob Pike <r@golang.org>
src/testing/testing.go

index 3dcc5afef95a1f9405a29c485d999870f4d0bb06..16354ae95fc97c868978eaeb242848fe7e7762b8 100644 (file)
@@ -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