Skip to content

Commit

Permalink
don't rely on envvar
Browse files Browse the repository at this point in the history
  • Loading branch information
glasnt committed Jan 7, 2025
1 parent 2d580cb commit d2d683c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

TEST_PROJECT_ID = os.getenv("GOOGLE_CLOUD_PROJECT")
TEST_LOCATION = os.getenv("TEST_QUEUE_LOCATION", "us-central1")
TEST_QUEUE_NAME = os.getenv("TEST_QUEUE_NAME", f"my-appengine-queue-{uuid.uuid4()}")
TEST_QUEUE_NAME = f"my-appengine-queue-{uuid.uuid4()}"


def test_create_task():
Expand Down

0 comments on commit d2d683c

Please sign in to comment.