From 3da5684978f2ebd8623acab8681da99075eec9ac Mon Sep 17 00:00:00 2001 From: jessiexjiang27 Date: Thu, 10 Dec 2020 12:18:33 -0500 Subject: [PATCH] fix: change location in IT to be 'global' Change the location ID in integration test to be "global" instead of "us" because the former is more standardized. "us" is just a legacy usage that we supported. --- .../com/google/cloud/dialogflow/cx/v3beta1/it/ITSystemTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google-cloud-dialogflow-cx/src/test/java/com/google/cloud/dialogflow/cx/v3beta1/it/ITSystemTest.java b/google-cloud-dialogflow-cx/src/test/java/com/google/cloud/dialogflow/cx/v3beta1/it/ITSystemTest.java index 956273d9e..a5c7abd0d 100644 --- a/google-cloud-dialogflow-cx/src/test/java/com/google/cloud/dialogflow/cx/v3beta1/it/ITSystemTest.java +++ b/google-cloud-dialogflow-cx/src/test/java/com/google/cloud/dialogflow/cx/v3beta1/it/ITSystemTest.java @@ -110,7 +110,7 @@ public class ITSystemTest { private static final String PROJECT = ServiceOptions.getDefaultProjectId(); private static final String ID = UUID.randomUUID().toString(); - private static final String LOCATION = "us"; + private static final String LOCATION = "global"; private static final String DISPLAY_NAME = "test-" + ID.substring(0, 8); private static final String AGENT_TIME_ZONE = "America/Los_Angeles"; private static final String DEFAULT_LANGUAGE_CODE = "en";