Skip to content

Commit 0f35b9d

Browse files
committed
fix(tests): update Load function call to use paths.New for app.yaml
1 parent 825103e commit 0f35b9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/orchestrator/app/parser_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ bricks:
115115
err = os.WriteFile(appYaml.String(), []byte(appDescriptor), 0600)
116116
require.NoError(t, err)
117117

118-
app, err := Load(appYaml)
118+
app, err := Load(paths.New(tempDir))
119119
require.NoError(t, err)
120120
require.Equal(t, "Test App", app.Name)
121121
require.Equal(t, 1, len(app.Descriptor.Bricks))

0 commit comments

Comments
 (0)