removed second unused argument

This commit is contained in:
Alfred Kamanda 2025-01-03 11:17:09 +03:00
parent 91dc9ce82f
commit c26f5683f6
Signed by untrusted user: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -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)
}
})
}