Skip to content

Commit c713256

Browse files
lowering timeout value to ensure creation fails consistently (#3462)
1 parent 7a36329 commit c713256

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/service/advancedcluster/resource_advanced_cluster_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1470,11 +1470,11 @@ func createCleanupTest(t *testing.T, configCall func(t *testing.T, timeoutSectio
14701470
var (
14711471
timeoutsStrShort = `
14721472
timeouts {
1473-
create = "10s"
1473+
create = "2s"
14741474
}
14751475
delete_on_create_timeout = true
14761476
`
1477-
timeoutsStrLong = strings.ReplaceAll(timeoutsStrShort, "10s", "6000s")
1477+
timeoutsStrLong = strings.ReplaceAll(timeoutsStrShort, "2s", "6000s")
14781478
timeoutsStrLongFalse = strings.ReplaceAll(timeoutsStrLong, "true", "false")
14791479
)
14801480
steps := []resource.TestStep{

0 commit comments

Comments
 (0)