cmd/stringer: fix typo in test log message ("no" -> "not")
Fixes golang/go#22623 Change-Id: I62ab82a04f34f379f715f0902a69caa9c74c50d2 Reviewed-on: https://go-review.googlesource.com/76397 Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Kevin Burke <kev@inburke.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
c84da9fa1c
commit
05e91d0638
|
@ -54,7 +54,7 @@ func TestEndToEnd(t *testing.T) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if name == "cgo.go" && !build.Default.CgoEnabled {
|
if name == "cgo.go" && !build.Default.CgoEnabled {
|
||||||
t.Logf("cgo is no enabled for %s", name)
|
t.Logf("cgo is not enabled for %s", name)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
// Names are known to be ASCII and long enough.
|
// Names are known to be ASCII and long enough.
|
||||||
|
|
Loading…
Reference in New Issue