Skip to content

Commit

Permalink
fixup shipper tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zackattack01 committed Aug 14, 2024
1 parent 5fd96f4 commit 978c39a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ee/debug/shipper/shipper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ func TestShip(t *testing.T) { //nolint:paralleltest
mockKnapsack: func(t *testing.T) *typesMocks.Knapsack {
k := typesMocks.NewKnapsack(t)
k.On("EnrollSecret").Return("")
k.On("EnrollSecretPath").Return("")
return k
},
assertion: assert.NoError,
Expand All @@ -45,6 +46,7 @@ func TestShip(t *testing.T) { //nolint:paralleltest
mockKnapsack: func(t *testing.T) *typesMocks.Knapsack {
k := typesMocks.NewKnapsack(t)
k.On("EnrollSecret").Return("")
k.On("EnrollSecretPath").Return("")
return k
},
assertion: assert.NoError,
Expand Down

0 comments on commit 978c39a

Please sign in to comment.