From 419716a2b4e9bba6b0295bb4915b18cb300015f7 Mon Sep 17 00:00:00 2001 From: alfred-mk Date: Mon, 24 Mar 2025 19:57:08 +0300 Subject: [PATCH] remove the subprefix db from TestCheckVouchers --- handlers/application/menuhandler_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/handlers/application/menuhandler_test.go b/handlers/application/menuhandler_test.go index 2a2263f..d4a42da 100644 --- a/handlers/application/menuhandler_test.go +++ b/handlers/application/menuhandler_test.go @@ -2067,12 +2067,10 @@ func TestCheckVouchers(t *testing.T) { ctx, store := InitializeTestStore(t) ctx = context.WithValue(ctx, "SessionId", sessionId) - spdb := InitializeTestSubPrefixDb(t, ctx) h := &MenuHandlers{ userdataStore: store, accountService: mockAccountService, - prefixDb: spdb, } err := store.WriteEntry(ctx, sessionId, storedb.DATA_PUBLIC_KEY, []byte(publicKey)) @@ -2104,7 +2102,7 @@ func TestCheckVouchers(t *testing.T) { assert.NoError(t, err) // Read voucher sym data from the store - voucherData, err := spdb.Get(ctx, storedb.ToBytes(storedb.DATA_VOUCHER_SYMBOLS)) + voucherData, err := store.ReadEntry(ctx, sessionId, storedb.DATA_VOUCHER_SYMBOLS) if err != nil { t.Fatal(err) }