diff --git a/genny/tokenauth/token_auth_test.go b/genny/tokenauth/token_auth_test.go index 6b614d9..ded89eb 100644 --- a/genny/tokenauth/token_auth_test.go +++ b/genny/tokenauth/token_auth_test.go @@ -2,6 +2,7 @@ package tokenauth import ( "context" + "path/filepath" "testing" "github.com/gobuffalo/genny/v2" @@ -13,7 +14,8 @@ func Test_New(t *testing.T) { run := genny.DryRunner(context.Background()) g := genny.New() - g.File(genny.NewFileS("actions/app.go", (appBefore))) + appPath := filepath.Join("actions", "app.go") + g.File(genny.NewFileS(appPath, (appBefore))) run.With(g) gg, err := New(&Options{})