Skip to content

Commit

Permalink
Tests update
Browse files Browse the repository at this point in the history
  • Loading branch information
denis256 committed Sep 26, 2024
1 parent de37930 commit 13805ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration_engine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func TestEngineRunAllOpentofu(t *testing.T) {
stdout, stderr, err := runTerragruntCommandWithOutput(t, fmt.Sprintf("terragrunt run-all apply -no-color -auto-approve --terragrunt-non-interactive --terragrunt-forward-tf-stdout --terragrunt-working-dir %s", rootPath))
require.NoError(t, err)

assert.Contains(t, stderr, "starting plugin:")
assert.Contains(t, stderr, "[INFO] plugin process exited")
assert.Contains(t, stderr, "plugin process exited:")
assert.Contains(t, stdout, "resource \"local_file\" \"test\"")
assert.Contains(t, stdout, "filename = \"./test.txt\"\n")
Expand Down Expand Up @@ -142,7 +142,7 @@ func TestEngineChecksumVerification(t *testing.T) {
require.NoError(t, err)

// change the checksum of the package file
version := "v0.0.5"
version := "v0.0.9"
platform := runtime.GOOS
arch := runtime.GOARCH
executablePath := fmt.Sprintf("terragrunt/plugins/iac-engine/rpc/%s/%s/%s/terragrunt-iac-engine-opentofu_rpc_%s_%s_%s", version, platform, arch, version, platform, arch)
Expand Down

0 comments on commit 13805ec

Please sign in to comment.