cmd/go/testdata/script: fix incorrect comments

Change-Id: I675d66c229a4293146366bc9b927e0fd2d7a3eeb
Reviewed-on: https://go-review.googlesource.com/c/go/+/351929
Run-TryBot: Zvonimir Pavlinovic <zpavlinovic@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Ingo Oeser <nightlyone@googlemail.com>
Reviewed-by: Bryan C. Mills <bcmills@google.com>
Trust: Than McIntosh <thanm@google.com>
Trust: Zvonimir Pavlinovic <zpavlinovic@google.com>
This commit is contained in:
Zvonimir Pavlinovic 2021-09-23 15:50:22 -07:00 committed by Bryan C. Mills
parent 315cec25bc
commit 964ea8c648

View file

@ -24,11 +24,11 @@ stderr 'using resp before checking for errors'
! go test -vet=bools,xyz ./vetall/...
stderr '-vet argument must be a supported analyzer'
# Test with a list of analyzers
# Test with a single analyzer
! go test -vet=httpresponse ./vetall/...
stderr 'using resp before checking for errors'
# Test with a single analyzer
# Test with a list of analyzers
go test -vet=atomic,bools,nilfunc ./vetall/...
stdout 'm/vetall.*\[no tests to run\]'