Skip to content

Commit ecd5991

Browse files
authored
Fix cluster tenant test (#3955)
1 parent dbffc3e commit ecd5991

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

internal/service/cluster/resource_cluster_test.go

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1054,31 +1054,6 @@ func TestAccCluster_tenant(t *testing.T) {
10541054
})
10551055
}
10561056

1057-
func TestAccCluster_tenant_m5(t *testing.T) {
1058-
var (
1059-
resourceName = "mongodbatlas_cluster.tenant"
1060-
projectID, clusterName = acc.ProjectIDExecutionWithCluster(t, 1)
1061-
)
1062-
1063-
resource.ParallelTest(t, resource.TestCase{
1064-
PreCheck: func() { acc.PreCheckBasic(t) },
1065-
ProtoV6ProviderFactories: acc.TestAccProviderV6Factories,
1066-
CheckDestroy: acc.CheckDestroyCluster,
1067-
Steps: []resource.TestStep{
1068-
{
1069-
Config: configTenant(projectID, clusterName, "M5", "5"),
1070-
Check: resource.ComposeAggregateTestCheckFunc(
1071-
acc.CheckExistsCluster(resourceName),
1072-
resource.TestCheckResourceAttrSet(resourceName, "project_id"),
1073-
resource.TestCheckResourceAttr(resourceName, "name", clusterName),
1074-
resource.TestCheckResourceAttr(resourceName, "disk_size_gb", "5"),
1075-
resource.TestCheckResourceAttrSet(resourceName, "mongo_uri"),
1076-
),
1077-
},
1078-
},
1079-
})
1080-
}
1081-
10821057
func TestAccCluster_basicGCPRegionNameWesternUS(t *testing.T) {
10831058
var (
10841059
projectID, clusterName = acc.ProjectIDExecutionWithCluster(t, 3)
@@ -1864,7 +1839,6 @@ func configTenantUpdated(projectID, name string) string {
18641839
18651840
provider_instance_size_name = "M10"
18661841
disk_size_gb = 10
1867-
auto_scaling_disk_gb_enabled = true
18681842
}
18691843
`, projectID, name)
18701844
}

0 commit comments

Comments
 (0)