Skip to content

Commit

Permalink
Add in new parameters for gov from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxwell Dulin committed Aug 6, 2024
1 parent 91d6f3e commit e850e82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/pkg/governor/governor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit e850e82

Please sign in to comment.