From b7d4f80e3e9a2edb1a169a6dfdade52299c5756a Mon Sep 17 00:00:00 2001 From: Elle Mouton Date: Thu, 10 Jul 2025 14:52:46 +0200 Subject: [PATCH] graph/db: pass in ctx to test method Fix compilation error. --- graph/db/sql_migration_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/graph/db/sql_migration_test.go b/graph/db/sql_migration_test.go index ba51cdb63..6e57b24ac 100644 --- a/graph/db/sql_migration_test.go +++ b/graph/db/sql_migration_test.go @@ -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 {