Commit 00b76713 authored by Rob Pike's avatar Rob Pike

cmd/pack: another attempt to fix the build for TestHello

Plan 9 uses single quotes, not double quotes. I should have known.

LGTM=bradfitz
R=bradfitz
CC=golang-codereviews
https://golang.org/cl/66240043
parent 2037756f
......@@ -193,7 +193,7 @@ func TestHello(t *testing.T) {
}
out := run("go", "env")
re, err := regexp.Compile(`\s*GOCHAR="?(\w)"?`)
re, err := regexp.Compile(`\s*GOCHAR=['"]?(\w)['"]?`)
if err != nil {
t.Fatal(err)
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment