From c6e02ae0b19bcf80cd197995a2f2b408de56157e Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Date: Tue, 20 May 2025 22:50:51 -0400 Subject: [PATCH] Update test --- app_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app_test.go b/app_test.go index efd25e76..2dd7da59 100644 --- a/app_test.go +++ b/app_test.go @@ -1359,7 +1359,7 @@ func Test_NewError_Format(t *testing.T) { name: "format string + excess args", code: StatusBadRequest, in: args{"odd %d", 1, 2, 3}, - want: "odd 1", + want: "odd 1%!(EXTRA int=2, int=3)", }, { name: "≥2 args but first not string",