From 4d608eb224fe1ba8e8532fcc44f91702a5b17f9f Mon Sep 17 00:00:00 2001 From: fanzha02 Date: Wed, 10 Mar 2021 10:09:39 +0800 Subject: [PATCH] testing: fix typo in a comment Change-Id: I781808327be84113cd55c52bc214b821cd166114 Reviewed-on: https://go-review.googlesource.com/c/go/+/300269 Trust: fannie zhang Reviewed-by: Ian Lance Taylor --- src/testing/testing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testing/testing.go b/src/testing/testing.go index fc52f3c547..fafc67c5b7 100644 --- a/src/testing/testing.go +++ b/src/testing/testing.go @@ -388,7 +388,7 @@ type common struct { w io.Writer // For flushToParent. ran bool // Test or benchmark (or one of its subtests) was executed. failed bool // Test or benchmark has failed. - skipped bool // Test of benchmark has been skipped. + skipped bool // Test or benchmark has been skipped. done bool // Test is finished and all subtests have completed. helperPCs map[uintptr]struct{} // functions to be skipped when writing file/line info helperNames map[string]struct{} // helperPCs converted to function names