Skip to content

Commit

Permalink
Replace GCLOUD_PROJECT with GOOGLE_CLOUD_PROJECT. [(#4022)](GoogleClo…
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtisvg authored and busunkim96 committed Aug 4, 2020
1 parent 7532df6 commit 274d114
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import quickstart_batchgetassetshistory

PROJECT = os.environ['GCLOUD_PROJECT']
PROJECT = os.environ['GOOGLE_CLOUD_PROJECT']
BUCKET = 'assets-{}'.format(uuid.uuid4().hex)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import quickstart_createfeed
import quickstart_deletefeed

PROJECT = os.environ['GCLOUD_PROJECT']
PROJECT = os.environ['GOOGLE_CLOUD_PROJECT']
ASSET_NAME = 'assets-{}'.format(uuid.uuid4().hex)
FEED_ID = 'feed-{}'.format(uuid.uuid4().hex)
TOPIC = 'topic-{}'.format(uuid.uuid4().hex)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import quickstart_exportassets

PROJECT = os.environ['GCLOUD_PROJECT']
PROJECT = os.environ['GOOGLE_CLOUD_PROJECT']
BUCKET = 'assets-{}'.format(uuid.uuid4().hex)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import quickstart_deletefeed
import quickstart_getfeed

PROJECT = os.environ['GCLOUD_PROJECT']
PROJECT = os.environ['GOOGLE_CLOUD_PROJECT']
ASSET_NAME = 'assets-{}'.format(uuid.uuid4().hex)
FEED_ID = 'feed-{}'.format(uuid.uuid4().hex)
TOPIC = 'topic-{}'.format(uuid.uuid4().hex)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import quickstart_listfeeds

PROJECT = os.environ['GCLOUD_PROJECT']
PROJECT = os.environ['GOOGLE_CLOUD_PROJECT']


def test_list_feeds(capsys):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import quickstart_deletefeed
import quickstart_updatefeed

PROJECT = os.environ['GCLOUD_PROJECT']
PROJECT = os.environ['GOOGLE_CLOUD_PROJECT']
ASSET_NAME = 'assets-{}'.format(uuid.uuid4().hex)
FEED_ID = 'feed-{}'.format(uuid.uuid4().hex)
TOPIC = 'topic-{}'.format(uuid.uuid4().hex)
Expand Down

0 comments on commit 274d114

Please sign in to comment.