From 28e7f78d54e26d330ba277582c107f094d65e67c Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Thu, 7 Nov 2019 11:56:36 -0500 Subject: [PATCH] tests: fix typos in new 'vpcsc_config' module. --- test_utils/test_utils/vpcsc_config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test_utils/test_utils/vpcsc_config.py b/test_utils/test_utils/vpcsc_config.py index b8854b2a46a4..36b15d6be991 100644 --- a/test_utils/test_utils/vpcsc_config.py +++ b/test_utils/test_utils/vpcsc_config.py @@ -22,7 +22,7 @@ INSIDE_VPCSC_ENVVAR = "GOOGLE_CLOUD_TESTS_IN_VPCSC" PROJECT_INSIDE_ENVVAR = "PROJECT_ID" PROJECT_OUTSIDE_ENVVAR = "GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_PROJECT" -BUCKET_OUTSIDE_ENVVVAR = "GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_BUCKET" +BUCKET_OUTSIDE_ENVVAR = "GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_BUCKET" class VPCSCTestConfig(object): @@ -73,7 +73,7 @@ def skip_if_inside_vpcsc(self, testcase): """Test decorator: skip if running inside VPCSC.""" reason = ( "Running inside VPCSC. " - "Set the {} environment variable to enable this test." + "Unset the {} environment variable to enable this test." ).format(INSIDE_VPCSC_ENVVAR) skip = pytest.mark.skipif(self.inside_vpcsc, reason=reason) return skip(testcase) @@ -82,7 +82,7 @@ def skip_unless_inside_vpcsc(self, testcase): """Test decorator: skip if running outside VPCSC.""" reason = ( "Running outside VPCSC. " - "Unset the {} environment variable to enable this test." + "Set the {} environment variable to enable this test." ).format(INSIDE_VPCSC_ENVVAR) skip = pytest.mark.skipif(not self.inside_vpcsc, reason=reason) return skip(testcase)