graph/db: pass in ctx to test method

Fix compilation error.
This commit is contained in:
Elle Mouton
2025-07-10 14:52:46 +02:00
parent 8ee661f18f
commit b7d4f80e3e

View File

@@ -345,8 +345,9 @@ func (c chanSet) CountPolicies() int {
// fetchAllChannelsAndPolicies retrieves all channels and their policies
// from the given store and returns them sorted by their channel ID.
func fetchAllChannelsAndPolicies(t *testing.T, store V1Store) chanSet {
ctx := context.Background()
channels := make(chanSet, 0)
err := store.ForEachChannel(func(info *models.ChannelEdgeInfo,
err := store.ForEachChannel(ctx, func(info *models.ChannelEdgeInfo,
p1 *models.ChannelEdgePolicy,
p2 *models.ChannelEdgePolicy) error {