Skip to content

Commit 6205f4e

Browse files
authored
Fix: Make test var name match code (GoogleCloudPlatform#7754)
* Fix: Change variable name for consistency b/224052838 * Update auth_test.py
1 parent 20305d8 commit 6205f4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

auth/service-to-service/auth_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def services():
4444
)
4545

4646
# Get the URL for the hello-world service
47-
service_url = subprocess.run(
47+
endpoint = subprocess.run(
4848
[
4949
"gcloud", "run", "services", "describe", f"helloworld-{suffix}",
5050
"--project", project,
@@ -66,7 +66,7 @@ def services():
6666
"--trigger-http",
6767
"--no-allow-unauthenticated",
6868
"--entry-point=get_authorized",
69-
f"--set-env-vars=URL={service_url.decode()}"
69+
f"--set-env-vars=URL={endpoint.decode()}"
7070
],
7171
check=True
7272
)

0 commit comments

Comments
 (0)