mirror of
https://github.com/golang/go
synced 2024-11-18 13:54:59 -07:00
cmd/cover: fix typo
Change-Id: I3f13488605ab62eba5d3c59d5e9df1bcf69dd571 Reviewed-on: https://go-review.googlesource.com/30355 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
316f93f716
commit
44009a2413
@ -90,7 +90,7 @@ func TestCover(t *testing.T) {
|
||||
if got, err := regexp.MatchString(".*\n//go:nosplit\nfunc someFunction().*", string(file)); err != nil || !got {
|
||||
t.Errorf("misplaced compiler directive: got=(%v, %v); want=(true; nil)", got, err)
|
||||
}
|
||||
// No other comments should be present in generaed code.
|
||||
// No other comments should be present in generated code.
|
||||
c := ".*// This comment shouldn't appear in generated go code.*"
|
||||
if got, err := regexp.MatchString(c, string(file)); err != nil || got {
|
||||
t.Errorf("non compiler directive comment %q found. got=(%v, %v); want=(false; nil)", c, got, err)
|
||||
|
Loading…
Reference in New Issue
Block a user