Skip to content

Commit

Permalink
Fix last non-working test :D
Browse files Browse the repository at this point in the history
  • Loading branch information
jocgir committed Oct 5, 2024
1 parent 2ee324a commit fe8e815
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion cli/cli_app.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ AUTHOR(S):
`

// This uses the constraint syntax from https://github.com/hashicorp/go-version
const defaultTerraformVersionConstraint = ">= v1.9.0"
const defaultTerraformVersionConstraint = ">= v1.7.0"

var terragruntVersion string
var terragruntRunID string
Expand Down
16 changes: 8 additions & 8 deletions test/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,16 +196,16 @@ func TestTerragruntCustomConfig(t *testing.T) {
- path: fixture-custom-config/sub-project-1
- path: fixture-custom-config/sub-project-2/sub-project-2-1
dependencies:
- fixture-custom-config/sub-project-1
- fixture-custom-config/sub-project-1
- path: fixture-custom-config/sub-project-2/sub-project-2-2
dependencies:
- fixture-custom-config/sub-project-2/sub-project-2-1
- fixture-custom-config/sub-project-1
- fixture-custom-config/sub-project-2/sub-project-2-1
- fixture-custom-config/sub-project-1
- path: fixture-custom-config/sub-project-3
dependencies:
- fixture-custom-config/sub-project-2/sub-project-2-1
- fixture-custom-config/sub-project-2/sub-project-2-2
- fixture-custom-config/sub-project-1
- fixture-custom-config/sub-project-2/sub-project-2-1
- fixture-custom-config/sub-project-2/sub-project-2-2
- fixture-custom-config/sub-project-1
`)+"\n", out.String())
assert.Equal(t, "", err.String())
}
Expand Down Expand Up @@ -301,11 +301,11 @@ func TestDownloads(t *testing.T) {
},
{
path: "fixture-download/remote",
expectedOutput: `^test = <<EOT\nhello remote from remote$`,
expectedOutput: `^test = "Hello, remote"$`,
},
{
path: "fixture-download/remote-relative",
expectedOutput: `^test = <<EOT\nhello remote from remote-relative$`,
expectedOutput: `^test = "Hello, remote-relative"$`,
},
{
path: "fixture-download/override",
Expand Down

0 comments on commit fe8e815

Please sign in to comment.