diff --git a/cobra/cmd/add_test.go b/cobra/cmd/add_test.go index 0c46bc58..b920e2b9 100644 --- a/cobra/cmd/add_test.go +++ b/cobra/cmd/add_test.go @@ -18,9 +18,6 @@ import ( func TestGoldenAddCmd(t *testing.T) { projectName := "github.com/spf13/testproject" project := NewProject(projectName) - - // Initialize the project at first. - initializeProject(project) defer os.RemoveAll(project.AbsPath()) viper.Set("author", "NAME HERE ") @@ -30,6 +27,9 @@ func TestGoldenAddCmd(t *testing.T) { defer viper.Set("license", nil) defer viper.Set("year", nil) + // Initialize the project first. + initializeProject(project) + // Then add the "test" command. cmdName := "test" cmdPath := filepath.Join(project.CmdPath(), cmdName+".go")