Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
GiGurra committed Jul 14, 2023
1 parent 94f4f83 commit 634fc0f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/flycd/deployment_service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func TestDeployFromFolder_newApp(t *testing.T) {
DeployExistingApp(mock.Anything, mock.Anything, mock.Anything, mock.Anything).
Return(nil)

_, err := deployService.DeployAppFromFolder(ctx, "../../test/test-projects/merge-cfg/regular/app1", deployCfg)
_, err := deployService.DeployAppFromFolder(ctx, "../../test/test-projects/deploy-tests/apps/app1", deployCfg)
if err != nil {
t.Fatalf("DeployAppFromFolder failed: %v", err)
}
Expand Down Expand Up @@ -68,7 +68,7 @@ func TestDeployFromFolder_existingApp(t *testing.T) {
DeployExistingApp(mock.Anything, mock.Anything, mock.Anything, mock.Anything).
Return(nil)

_, err := deployService.DeployAppFromFolder(ctx, "../../test/test-projects/merge-cfg/regular/app1", deployCfg)
_, err := deployService.DeployAppFromFolder(ctx, "../../test/test-projects/deploy-tests/apps/app1", deployCfg)
if err != nil {
t.Fatalf("DeployAppFromFolder failed: %v", err)
}
Expand Down

0 comments on commit 634fc0f

Please sign in to comment.