aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2021-08-18 09:03:44 +0200
committerJay Conrod <jayconrod@google.com>2021-08-18 15:11:52 +0000
commit0c83e01e0c1df712002af8bded845fbca9677ffa (patch)
tree5748c0da0ef7255cd8cc469dd3c1cae456af8cda /src/cmd/go
parent8b471db71b95e9250f751f494a6a5359cb50d5cd (diff)
downloadgo-0c83e01e0c1df712002af8bded845fbca9677ffa.tar.gz
go-0c83e01e0c1df712002af8bded845fbca9677ffa.zip
cmd/go/testdata/script: fix test script added by CL 334873
CL 334873 added the net/http import to the wrong section in test_vet.txt. Correct this to fix the longtest builders. Change-Id: If28409ad1c2ed3bd3a2922fc20d5e534c30fa249 Reviewed-on: https://go-review.googlesource.com/c/go/+/343169 Trust: Tobias Klauser <tobias.klauser@gmail.com> Trust: Jay Conrod <jayconrod@google.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Jay Conrod <jayconrod@google.com>
Diffstat (limited to 'src/cmd/go')
-rw-r--r--src/cmd/go/testdata/script/test_vet.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/cmd/go/testdata/script/test_vet.txt b/src/cmd/go/testdata/script/test_vet.txt
index 239a477a18..2e0ae1956a 100644
--- a/src/cmd/go/testdata/script/test_vet.txt
+++ b/src/cmd/go/testdata/script/test_vet.txt
@@ -51,10 +51,7 @@ func Test(t *testing.T) {
-- p1.go --
package p
-import (
- "fmt"
- "net/http"
-)
+import "fmt"
func F() {
fmt.Printf("%d") // oops
@@ -62,6 +59,8 @@ func F() {
-- vetall/p.go --
package p
+import "net/http"
+
func F() {
resp, err := http.Head("example.com")
defer resp.Body.Close()