aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/testing
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2020-08-07 15:17:35 -0700
committerIan Lance Taylor <iant@golang.org>2020-08-07 17:22:33 -0700
commit10c8507372f3e1c09df0bfe6449c126dee5075de (patch)
tree27c7db25f91db33c83f56cc75621e61fbf21d921 /libgo/go/testing
parenta72e938d710fa4b6c8eb89c4daab68e320fa97df (diff)
downloadgcc-10c8507372f3e1c09df0bfe6449c126dee5075de.zip
gcc-10c8507372f3e1c09df0bfe6449c126dee5075de.tar.gz
gcc-10c8507372f3e1c09df0bfe6449c126dee5075de.tar.bz2
libgo: update to Go1.15rc2 release
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/247517
Diffstat (limited to 'libgo/go/testing')
-rw-r--r--libgo/go/testing/testing.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgo/go/testing/testing.go b/libgo/go/testing/testing.go
index 6f09358..dee77f7 100644
--- a/libgo/go/testing/testing.go
+++ b/libgo/go/testing/testing.go
@@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.
// Package testing provides support for automated testing of Go packages.
-// It is intended to be used in concert with the ``go test'' command, which automates
+// It is intended to be used in concert with the "go test" command, which automates
// execution of any function of the form
// func TestXxx(*testing.T)
// where Xxx does not start with a lowercase letter. The function name
@@ -14,8 +14,8 @@
// To write a new test suite, create a file whose name ends _test.go that
// contains the TestXxx functions as described here. Put the file in the same
// package as the one being tested. The file will be excluded from regular
-// package builds but will be included when the ``go test'' command is run.
-// For more detail, run ``go help test'' and ``go help testflag''.
+// package builds but will be included when the "go test" command is run.
+// For more detail, run "go help test" and "go help testflag".
//
// A simple test function looks like this:
//