summaryrefslogtreecommitdiff
path: root/internal/cli/reset/command_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cli/reset/command_test.go')
-rw-r--r--internal/cli/reset/command_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/cli/reset/command_test.go b/internal/cli/reset/command_test.go
index 1983cc5c..ca68cb54 100644
--- a/internal/cli/reset/command_test.go
+++ b/internal/cli/reset/command_test.go
@@ -5,12 +5,12 @@ import (
"github.com/roadrunner-server/roadrunner/v2/internal/cli/reset"
- "github.com/roadrunner-server/config/v2"
"github.com/stretchr/testify/assert"
)
func TestCommandProperties(t *testing.T) {
- cmd := reset.NewCommand(&config.Plugin{})
+ path := ""
+ cmd := reset.NewCommand(&path)
assert.Equal(t, "reset", cmd.Use)
assert.NotNil(t, cmd.RunE)