diff --git a/node/pkg/governor/governor_test.go b/node/pkg/governor/governor_test.go index 3ce25645a5..d44168c5d7 100644 --- a/node/pkg/governor/governor_test.go +++ b/node/pkg/governor/governor_test.go @@ -302,7 +302,7 @@ func TestFlowCancelFeatureFlag(t *testing.T) { ctx := context.Background() var db db.MockGovernorDB - gov := NewChainGovernor(zap.NewNop(), &db, common.GoTest, true) + gov := NewChainGovernor(zap.NewNop(), &db, common.GoTest, true, "") // Trigger the evaluation of the flow cancelling config err := gov.Run(ctx) @@ -322,7 +322,7 @@ func TestFlowCancelFeatureFlag(t *testing.T) { assert.NotZero(t, numFlowCancelling) // Disable flow cancelling - gov = NewChainGovernor(zap.NewNop(), &db, common.GoTest, false) + gov = NewChainGovernor(zap.NewNop(), &db, common.GoTest, false, "") // Trigger the evaluation of the flow cancelling config err = gov.Run(ctx)