From e4d1f809650a0f4d17ebbe730c08e2381522de3f Mon Sep 17 00:00:00 2001 From: Kurtis Van Gent <31518063+kurtisvg@users.noreply.github.com> Date: Tue, 9 Jun 2020 14:34:27 -0700 Subject: [PATCH] Replace GCLOUD_PROJECT with GOOGLE_CLOUD_PROJECT. [(#4022)](https://github.com/GoogleCloudPlatform/python-docs-samples/issues/4022) --- videointelligence/samples/analyze/beta_snippets_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/videointelligence/samples/analyze/beta_snippets_test.py b/videointelligence/samples/analyze/beta_snippets_test.py index a0ac30ffbf8d..390f1f7c8798 100644 --- a/videointelligence/samples/analyze/beta_snippets_test.py +++ b/videointelligence/samples/analyze/beta_snippets_test.py @@ -157,7 +157,7 @@ def test_track_objects_gcs(): # Flaky Gateway @pytest.mark.flaky(max_runs=3, min_passes=1) def test_streaming_automl_classification(capsys, video_path): - project_id = os.environ["GCLOUD_PROJECT"] + project_id = os.environ["GOOGLE_CLOUD_PROJECT"] model_id = "VCN6363999689846554624" beta_snippets.streaming_automl_classification(video_path, project_id, model_id) out, _ = capsys.readouterr()