aboutsummaryrefslogtreecommitdiff
path: root/go/internal/gccgoimporter/testenv_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/internal/gccgoimporter/testenv_test.go')
-rw-r--r--go/internal/gccgoimporter/testenv_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/go/internal/gccgoimporter/testenv_test.go b/go/internal/gccgoimporter/testenv_test.go
index 7afa464d9..9be8dcb32 100644
--- a/go/internal/gccgoimporter/testenv_test.go
+++ b/go/internal/gccgoimporter/testenv_test.go
@@ -12,7 +12,7 @@ import (
"testing"
)
-// HasGoBuild reports whether the current system can build programs with ``go build''
+// HasGoBuild reports whether the current system can build programs with “go build”
// and then run them with os.StartProcess or exec.Command.
func HasGoBuild() bool {
switch runtime.GOOS {
@@ -40,7 +40,7 @@ func HasExec() bool {
return true
}
-// MustHaveGoBuild checks that the current system can build programs with ``go build''
+// MustHaveGoBuild checks that the current system can build programs with “go build”
// and then run them with os.StartProcess or exec.Command.
// If not, MustHaveGoBuild calls t.Skip with an explanation.
func MustHaveGoBuild(t *testing.T) {