From c26f5683f6a752b0f23fdbc9980a665d31f4555a Mon Sep 17 00:00:00 2001 From: alfred-mk Date: Fri, 3 Jan 2025 11:17:09 +0300 Subject: [PATCH] removed second unused argument --- common/pin_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/pin_test.go b/common/pin_test.go index f10ad6b..154ab06 100644 --- a/common/pin_test.go +++ b/common/pin_test.go @@ -114,7 +114,7 @@ func TestVerifyMigratedHashPin(t *testing.T) { t.Run(tt.pin, func(t *testing.T) { ok := VerifyPIN(tt.hash, tt.pin) if !ok { - t.Errorf("VerifyPIN could not verify migrated PIN: %v", tt.pin, ok) + t.Errorf("VerifyPIN could not verify migrated PIN: %v", tt.pin) } }) }