string not bool

This commit is contained in:
Joshua Harshman 2018-10-11 16:09:02 -07:00 committed by jharshman
parent dd934029fb
commit 112b5c06b4
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ import (
// Use -update to update existing golden files.
func TestGoldenAddCmd(t *testing.T) {
projectName := "github.com/spf13/testproject"
project := NewProject(projectName, false)
project := NewProject(projectName, "")
defer os.RemoveAll(project.AbsPath())
viper.Set("author", "NAME HERE <EMAIL ADDRESS>")

View file

@ -16,7 +16,7 @@ import (
// Use -update to update existing golden files.
func TestGoldenInitCmd(t *testing.T) {
projectName := "github.com/spf13/testproject"
project := NewProject(projectName, false)
project := NewProject(projectName, "")
defer os.RemoveAll(project.AbsPath())
viper.Set("author", "NAME HERE <EMAIL ADDRESS>")