update the reset flags in TestConfirmPinChange

This commit is contained in:
Alfred Kamanda 2025-04-09 18:01:40 +03:00
parent 1076a9578e
commit 4ef8c47f8b
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -1889,7 +1889,7 @@ func TestVerifyNewPin(t *testing.T) {
} }
} }
func TestConfirmPin(t *testing.T) { func TestConfirmPinChange(t *testing.T) {
sessionId := "session123" sessionId := "session123"
mockState := state.NewState(16) mockState := state.NewState(16)
@ -1898,6 +1898,8 @@ func TestConfirmPin(t *testing.T) {
fm, _ := NewFlagManager(flagsPath) fm, _ := NewFlagManager(flagsPath)
flag_pin_mismatch, _ := fm.GetFlag("flag_pin_mismatch") flag_pin_mismatch, _ := fm.GetFlag("flag_pin_mismatch")
flag_account_pin_reset, _ := fm.GetFlag("flag_account_pin_reset")
mockAccountService := new(mocks.MockAccountService) mockAccountService := new(mocks.MockAccountService)
h := &MenuHandlers{ h := &MenuHandlers{
userdataStore: store, userdataStore: store,
@ -1917,7 +1919,7 @@ func TestConfirmPin(t *testing.T) {
input: []byte("1234"), input: []byte("1234"),
temporarypin: "1234", temporarypin: "1234",
expectedResult: resource.Result{ expectedResult: resource.Result{
FlagReset: []uint32{flag_pin_mismatch}, FlagReset: []uint32{flag_pin_mismatch, flag_account_pin_reset},
}, },
}, },
} }