Skip to content

Commit

Permalink
Fix artifact upload integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pietern committed Sep 11, 2024
1 parent 6630713 commit 62df67d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions internal/bundle/artifacts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ func TestAccUploadArtifactFileToCorrectRemotePath(t *testing.T) {
wsDir := internal.TemporaryWorkspaceDir(t, w)

b := &bundle.Bundle{
RootPath: dir,
RootPath: dir,
SyncRootPath: dir,
Config: config.Root{
Bundle: config.Bundle{
Target: "whatever",
Expand Down Expand Up @@ -100,7 +101,8 @@ func TestAccUploadArtifactFileToCorrectRemotePathWithEnvironments(t *testing.T)
wsDir := internal.TemporaryWorkspaceDir(t, w)

b := &bundle.Bundle{
RootPath: dir,
RootPath: dir,
SyncRootPath: dir,
Config: config.Root{
Bundle: config.Bundle{
Target: "whatever",
Expand Down Expand Up @@ -169,7 +171,8 @@ func TestAccUploadArtifactFileToCorrectRemotePathForVolumes(t *testing.T) {
touchEmptyFile(t, whlPath)

b := &bundle.Bundle{
RootPath: dir,
RootPath: dir,
SyncRootPath: dir,
Config: config.Root{
Bundle: config.Bundle{
Target: "whatever",
Expand Down

0 comments on commit 62df67d

Please sign in to comment.