We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02e77c4 commit f3e6b00Copy full SHA for f3e6b00
internal/acctest/acctest.go
@@ -43,8 +43,6 @@ func NewTestTools(t *testing.T) *TestTools {
43
ProviderSchema: nil,
44
TerraformVersion: "terraform-tests",
45
HTTPClient: httpClient,
46
- // avoid "Error: could not detect project id"
47
- ForceProjectID: uuid.New().String(),
48
})
49
require.NoError(t, err)
50
@@ -84,6 +82,8 @@ func NewTestToolsWithoutRequestProjectID(t *testing.T) *TestTools {
84
82
85
83
86
+ // avoid "Error: could not detect project id" in CI
+ ForceProjectID: uuid.New().String(),
87
88
89
0 commit comments