Skip to content

Commit

Permalink
update readme example
Browse files Browse the repository at this point in the history
  • Loading branch information
mcalhoun committed Apr 15, 2024
1 parent 5072f2a commit aa4334b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ properly and that the coput contains "Hello, World". Below hows how you could ru
func TestApplyNoError(t *testing.T) {
t.Parallel()

testFolder, err := files.CopyTerraformFolderToTemp(atmosExamplePath, t.Name())
testFolder, err := files.CopyTerraformFolderToTemp("../../test/fixtures/atmos", t.Name())
require.NoError(t, err)
defer os.RemoveAll(testFolder)

Expand Down
2 changes: 1 addition & 1 deletion README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ introduction: |-
func TestApplyNoError(t *testing.T) {
t.Parallel()
testFolder, err := files.CopyTerraformFolderToTemp(atmosExamplePath, t.Name())
testFolder, err := files.CopyTerraformFolderToTemp("../../test/fixtures/atmos", t.Name())
require.NoError(t, err)
defer os.RemoveAll(testFolder)
Expand Down

0 comments on commit aa4334b

Please sign in to comment.