diff options
Diffstat (limited to 'internal/cli/reset/command_test.go')
-rw-r--r-- | internal/cli/reset/command_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/cli/reset/command_test.go b/internal/cli/reset/command_test.go index 57801453..509354e2 100644 --- a/internal/cli/reset/command_test.go +++ b/internal/cli/reset/command_test.go @@ -10,7 +10,8 @@ import ( func TestCommandProperties(t *testing.T) { path := "" - cmd := reset.NewCommand(&path, nil) + f := false + cmd := reset.NewCommand(&path, nil, &f) assert.Equal(t, "reset", cmd.Use) assert.NotNil(t, cmd.RunE) |