From 38cfb3be9d486833456276777155980d1ec0823e Mon Sep 17 00:00:00 2001 From: Andrey Bozhko Date: Wed, 21 Dec 2022 22:24:05 +0000 Subject: [PATCH] testing: rephrase the sentence about naming test files This updates the explanation about naming test files to be a little more clear. Fixes #57389 Change-Id: I9b3a8e2dae5e3ad398b55624e183809b7d90864c GitHub-Last-Rev: 9ff81b74b201ca032fd373424aa02a3fedaec008 GitHub-Pull-Request: golang/go#57399 Reviewed-on: https://go-review.googlesource.com/c/go/+/458435 Reviewed-by: Ian Lance Taylor TryBot-Result: Gopher Robot Auto-Submit: Ian Lance Taylor Reviewed-by: Fahad King Reviewed-by: Rob Pike Run-TryBot: Ian Lance Taylor Reviewed-by: David Chase --- src/testing/testing.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/testing/testing.go b/src/testing/testing.go index acd28667c2..fc34cbf28b 100644 --- a/src/testing/testing.go +++ b/src/testing/testing.go @@ -13,8 +13,9 @@ // // Within these functions, use the Error, Fail or related methods to signal failure. // -// To write a new test suite, create a file whose name ends _test.go that -// contains the TestXxx functions as described here. +// To write a new test suite, create a file that +// contains the TestXxx functions as described here, +// and give that file a name ending in "_test.go". // The file will be excluded from regular // package builds but will be included when the "go test" command is run. // -- 2.48.1