Refactor output message

"/reflect/all_test.go : refactor message."

This PR corrects a syntax

%value -> %v

Change-Id: Ie56b93d238f090c564a88eb963dc9b7773054356
GitHub-Last-Rev: 023fde3ed4
GitHub-Pull-Request: golang/go#66974
Reviewed-on: https://go-review.googlesource.com/c/go/+/580935
Reviewed-by: Joedian Reid <joedian@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith Randall <khr@golang.org>
Auto-Submit: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
This commit is contained in:
Lev Ustimenko 2024-04-22 20:09:05 +00:00 committed by Gopher Robot
parent aa63ef4b8b
commit 5a3b6400ef

View File

@ -8521,7 +8521,7 @@ func TestClear(t *testing.T) {
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
if !tc.testFunc(tc.value) {
t.Errorf("unexpected result for value.Clear(): %value", tc.value)
t.Errorf("unexpected result for value.Clear(): %v", tc.value)
}
})
}