Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
test: remove usage of location_path (#58)
Browse files Browse the repository at this point in the history
This resource helper was removed in the 3.0 release.

Co-authored-by: Mike <[email protected]>
  • Loading branch information
busunkim96 and munkhuushmgl authored Sep 2, 2020
1 parent df71788 commit c3705c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/system/test_vpcsc.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ def client():

@pytest.fixture(scope="module")
def parent_inside(client):
return client.location_path(vpcsc_config.project_inside, "us-central1")
return f"projects/{vpcsc_config.project_inside}/locations/us-central1"


@pytest.fixture(scope="module")
def parent_outside(client):
return client.location_path(vpcsc_config.project_outside, "us-central1")
return f"projects/{vpcsc_config.project_outside}/locations/us-central1"


@pytest.fixture(scope="module")
Expand Down

0 comments on commit c3705c4

Please sign in to comment.