From 889ac5b8a44988b05c85be923a61400499518352 Mon Sep 17 00:00:00 2001 From: Patrick O'brien Date: Sat, 9 May 2020 19:48:03 +1000 Subject: [PATCH] fix broken test --- cmd/new_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/new_test.go b/cmd/new_test.go index c82c135..0f45b57 100644 --- a/cmd/new_test.go +++ b/cmd/new_test.go @@ -45,7 +45,7 @@ func TestGetAppPath(t *testing.T) { t.Errorf("mismatch, got %s", importPath) } - appPath, _, importPath, appName, appEnvName, err = getAppPath([]string{"./stuff/test"}, "/templatepath") + appPath, _, importPath, appName, appEnvName, err = getAppPath([]string{"./stuff/test", "/templatepath"}) if err != nil { t.Error(err) }