Skip to content

Commit 097a22f

Browse files
authored
tests: fix typos in new 'vpcsc_config' module (#9630)
1 parent 79bdd03 commit 097a22f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test_utils/test_utils/vpcsc_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
INSIDE_VPCSC_ENVVAR = "GOOGLE_CLOUD_TESTS_IN_VPCSC"
2323
PROJECT_INSIDE_ENVVAR = "PROJECT_ID"
2424
PROJECT_OUTSIDE_ENVVAR = "GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_PROJECT"
25-
BUCKET_OUTSIDE_ENVVVAR = "GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_BUCKET"
25+
BUCKET_OUTSIDE_ENVVAR = "GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_BUCKET"
2626

2727

2828
class VPCSCTestConfig(object):
@@ -73,7 +73,7 @@ def skip_if_inside_vpcsc(self, testcase):
7373
"""Test decorator: skip if running inside VPCSC."""
7474
reason = (
7575
"Running inside VPCSC. "
76-
"Set the {} environment variable to enable this test."
76+
"Unset the {} environment variable to enable this test."
7777
).format(INSIDE_VPCSC_ENVVAR)
7878
skip = pytest.mark.skipif(self.inside_vpcsc, reason=reason)
7979
return skip(testcase)
@@ -82,7 +82,7 @@ def skip_unless_inside_vpcsc(self, testcase):
8282
"""Test decorator: skip if running outside VPCSC."""
8383
reason = (
8484
"Running outside VPCSC. "
85-
"Unset the {} environment variable to enable this test."
85+
"Set the {} environment variable to enable this test."
8686
).format(INSIDE_VPCSC_ENVVAR)
8787
skip = pytest.mark.skipif(not self.inside_vpcsc, reason=reason)
8888
return skip(testcase)

0 commit comments

Comments
 (0)