From 9247857126d19e7533193a4f8f2e953b48984a9f Mon Sep 17 00:00:00 2001 From: Dosty Everts Date: Tue, 8 Nov 2022 16:18:07 -0600 Subject: [PATCH] INTMDB-384 Fix PrivateLink test flakiness (#895) * Using different endpointID values for the endpoint service adl tests * Removed parallelization with private link endpoint test which had overlap with others * Reverted changes to the endpointID --- ...ngodbatlas_privatelink_endpoint_service_adl_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mongodbatlas/resource_mongodbatlas_privatelink_endpoint_service_adl_test.go b/mongodbatlas/resource_mongodbatlas_privatelink_endpoint_service_adl_test.go index 91aa6ea01c..95766e829d 100644 --- a/mongodbatlas/resource_mongodbatlas_privatelink_endpoint_service_adl_test.go +++ b/mongodbatlas/resource_mongodbatlas_privatelink_endpoint_service_adl_test.go @@ -102,11 +102,11 @@ func testAccCheckMongoDBAtlasPrivateLinkEndpointServiceADLDestroy(state *terrafo func testAccMongoDBAtlasPrivateLinkEndpointServiceADLConfig(projectID, endpointID, comment string) string { return fmt.Sprintf(` resource "mongodbatlas_privatelink_endpoint_service_adl" "test" { - project_id = "%[1]s" - endpoint_id = "%[2]s" - comment = "%[3]s" - type = "DATA_LAKE" - provider_name = "AWS" + project_id = "%[1]s" + endpoint_id = "%[2]s" + comment = "%[3]s" + type = "DATA_LAKE" + provider_name = "AWS" } `, projectID, endpointID, comment) }