Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Abro <AustinAbro321@gmail.com>
  • Loading branch information
AustinAbro321 committed Feb 20, 2025
1 parent f2ca2c3 commit dd5c1ce
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/internal/packager2/layout/create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -320,9 +320,10 @@ func TestCreateAbsolutePathFileSource(t *testing.T) {
}
// Create zarf.yaml files in the tempdir
writePackageToDisk(t, parentPkg, tmpdir)
err := os.Mkdir(filepath.Join(tmpdir, "child"), 0700)
childDir := filepath.Join(tmpdir, "child")
err := os.Mkdir(childDir, 0700)
require.NoError(t, err)
writePackageToDisk(t, childPkg, tmpdir)
writePackageToDisk(t, childPkg, childDir)
// create the package
pkgLayout, err := CreatePackage(context.Background(), tmpdir, CreateOptions{})
require.NoError(t, err)
Expand Down

0 comments on commit dd5c1ce

Please sign in to comment.