Fix remaining reproducibility in TestGoldenAddCmd

My previous fix in PR #504 was incomplete.

Fixes #503
This commit is contained in:
Anthony Fok 2017-07-31 11:04:27 -06:00
parent 3da102d464
commit b26b538f69

View file

@ -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 <EMAIL ADDRESS>")
@ -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")