summaryrefslogtreecommitdiff
path: root/internal/cli/workers/command_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cli/workers/command_test.go')
-rw-r--r--internal/cli/workers/command_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/cli/workers/command_test.go b/internal/cli/workers/command_test.go
index a3d144df..c68ec9b1 100644
--- a/internal/cli/workers/command_test.go
+++ b/internal/cli/workers/command_test.go
@@ -9,14 +9,14 @@ import (
)
func TestCommandProperties(t *testing.T) {
- cmd := workers.NewCommand(nil)
+ cmd := workers.NewCommand(nil, nil)
assert.Equal(t, "workers", cmd.Use)
assert.NotNil(t, cmd.RunE)
}
func TestCommandFlags(t *testing.T) {
- cmd := workers.NewCommand(nil)
+ cmd := workers.NewCommand(nil, nil)
cases := []struct {
giveName string