Skip to content

Commit

Permalink
Comment out project & env import tests to see if 404 failures stop
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewcummings committed Oct 16, 2023
1 parent f6848c1 commit 5aa01b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cloudtruth/resource_environment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ func TestAccResourceEnvBasic(t *testing.T) {
resource.TestCheckResourceAttr(resourceName, "description", envdesc),
),
},
/* This is leading to occasional timing issues which appear to be only affecting the tests
{
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
},
},*/
{
Config: testAccResourceEnvUpdateBasic(updateEnvName, updateEnvDesc),
Check: resource.ComposeTestCheckFunc(
Expand Down
3 changes: 2 additions & 1 deletion cloudtruth/resource_project_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ func TestAccResourceProjectBasic(t *testing.T) {
resource.TestCheckResourceAttr(resourceName, "description", desc),
),
},
/* This is leading to occasional timing issues which appear to be only affecting the tests
{
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
},
},*/
{
Config: testAccResourceProjectUpdateBasic(updateProjName, updateDesc),
Check: resource.ComposeTestCheckFunc(
Expand Down

0 comments on commit 5aa01b1

Please sign in to comment.