1
0
mirror of https://github.com/golang/go synced 2024-09-29 22:34:33 -06:00

testing: change Error to Errorf in comment

Fixes #56479

Change-Id: I1d97eb3ea97304e429e178ad05cb9f861b2bce84
Reviewed-on: https://go-review.googlesource.com/c/go/+/446275
Run-TryBot: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Bryan Mills <bcmills@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Ian Lance Taylor <iant@google.com>
This commit is contained in:
Ian Lance Taylor 2022-10-28 12:33:49 -07:00 committed by Gopher Robot
parent 42f334d677
commit 4c69d0eeb8

View File

@ -263,7 +263,7 @@
// t.Skip()
// }
// if _, err := json.Marshal(v); err != nil {
// t.Error("Marshal: %v", err)
// t.Errorf("Marshal: %v", err)
// }
// })
// }