Skip to content

Commit

Permalink
CNS-930: small PR fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oren-lava committed Apr 1, 2024
1 parent 04683ca commit faea0af
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions x/pairing/keeper/fixation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,10 @@ func TestEpochPaymentDeletionWithMemoryShortening(t *testing.T) {
res2, err := ts.QueryPairingProviderEpochCu(providerAddr, res.Project.Index, ts.spec.Index)
require.NoError(t, err)
require.Len(t, res2.Info, 0)

list1 := ts.Keepers.Pairing.GetAllUniqueEpochSessionStore(ts.Ctx)
require.Len(t, list1, 0)

list2 := ts.Keepers.Pairing.GetAllProviderConsumerEpochCuStore(ts.Ctx)
require.Len(t, list2, 0)
}

0 comments on commit faea0af

Please sign in to comment.