Skip to content

Commit d4a3348

Browse files
mai-nakagawapotiuk
authored andcommitted
Update the TEST_ENDPOINT_ID to use the valid format
1 parent 6b45999 commit d4a3348

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/providers/google/cloud/hooks/vertex_ai/test_endpoint_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
TEST_REGION: str = "test-region"
3232
TEST_PROJECT_ID: str = "test-project-id"
3333
TEST_ENDPOINT: dict = {}
34-
TEST_ENDPOINT_ID: str = "test_endpoint_id"
34+
TEST_ENDPOINT_ID: str = "1234567890"
3535
TEST_ENDPOINT_NAME: str = "test_endpoint_name"
3636
TEST_DEPLOYED_MODEL: dict = {}
3737
TEST_DEPLOYED_MODEL_ID: str = "test-deployed-model-id"

tests/providers/google/cloud/operators/test_vertex_ai.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
TEST_ENDPOINT = {
149149
"display_name": "endpoint_test",
150150
}
151-
TEST_ENDPOINT_ID = "test_endpoint_id"
151+
TEST_ENDPOINT_ID = "1234567890"
152152
TEST_DEPLOYED_MODEL = {
153153
# format: 'projects/{project}/locations/{location}/models/{model}'
154154
'model': f"projects/{GCP_PROJECT}/locations/{GCP_LOCATION}/models/test_model_id",

0 commit comments

Comments
 (0)