mirror of
https://github.com/golang/go
synced 2024-11-26 02:57:57 -07:00
os: remove non-constant format string in t.Errorf call
Fixes #68744 Change-Id: I12db785fc21c18db69d57cf91e2190b4a3df2484 Reviewed-on: https://go-review.googlesource.com/c/go/+/603515 Reviewed-by: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
parent
abc3d2c119
commit
b62342216d
@ -1533,10 +1533,10 @@ func testChtimes(t *testing.T, name string) {
|
|||||||
t.Log(errormsg)
|
t.Log(errormsg)
|
||||||
t.Log("Known NetBSD issue (atime not changed on fs mounted with noatime); ignoring.")
|
t.Log("Known NetBSD issue (atime not changed on fs mounted with noatime); ignoring.")
|
||||||
} else {
|
} else {
|
||||||
t.Errorf(errormsg)
|
t.Error(errormsg)
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
t.Errorf(errormsg)
|
t.Error(errormsg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user