From addb240995469dc22dd2c444e56ab6e2bbdafba2 Mon Sep 17 00:00:00 2001 From: arkadiuszos4chain Date: Thu, 4 Apr 2024 11:10:41 +0200 Subject: [PATCH] feat(BUX-400): fix test --- totp/totp_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/totp/totp_test.go b/totp/totp_test.go index 1dbefe0..1f6827d 100644 --- a/totp/totp_test.go +++ b/totp/totp_test.go @@ -65,6 +65,7 @@ func TestTotpService(t *testing.T) { sut := &Service{ Digits: 2, + Period: givenSeconds, } a_passcode, err := sut.GenarateTotp(a_xpriv, b_xpub) require.NoError(t, err)