From 50e59be015264d992b4cd127484d90d1495ea8cf Mon Sep 17 00:00:00 2001 From: Xin Date: Thu, 30 Jul 2020 12:45:43 -0400 Subject: [PATCH] Add tests for DICOM store pubsub topic removal. (#3442) --- products/healthcare/api.yaml | 2 +- .../resource_healthcare_dicom_store_test.go | 17 ++++++++--------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/products/healthcare/api.yaml b/products/healthcare/api.yaml index 39180082665a..0a1403a98b68 100644 --- a/products/healthcare/api.yaml +++ b/products/healthcare/api.yaml @@ -318,7 +318,7 @@ objects: - !ruby/object:Api::Type::Array name: 'resourceTypes' description: | - Supply a FHIR resource type (such as "Patient" or "Observation"). See + Supply a FHIR resource type (such as "Patient" or "Observation"). See https://www.hl7.org/fhir/valueset-resource-types.html for a list of all FHIR resource types. The server treats an empty list as an intent to stream all the supported resource types in this FHIR store. item_type: Api::Type::String diff --git a/third_party/terraform/tests/resource_healthcare_dicom_store_test.go b/third_party/terraform/tests/resource_healthcare_dicom_store_test.go index a0a8ea90fe4f..b6ac868e4e6b 100644 --- a/third_party/terraform/tests/resource_healthcare_dicom_store_test.go +++ b/third_party/terraform/tests/resource_healthcare_dicom_store_test.go @@ -101,15 +101,14 @@ func TestAccHealthcareDicomStore_basic(t *testing.T) { ImportState: true, ImportStateVerify: true, }, - // TODO(b/148536607): Uncomment once b/148536607 is fixed. - // { - // Config: testGoogleHealthcareDicomStore_basic(dicomStoreName, datasetName), - // }, - // { - // ResourceName: resourceName, - // ImportState: true, - // ImportStateVerify: true, - // }, + { + Config: testGoogleHealthcareDicomStore_basic(dicomStoreName, datasetName), + }, + { + ResourceName: resourceName, + ImportState: true, + ImportStateVerify: true, + }, }, }) }