summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Shepherd <jshepher@rackspace.com>2011-08-02 22:22:34 -0500
committerJustin Shepherd <jshepher@rackspace.com>2011-08-02 22:22:34 -0500
commit44964f41ed591c8ece72dbc36f5d668d2e279274 (patch)
treeadbd973c47ed1d8834aac5fd5a38ad01e71f1fe7
parenta75445d6f0eefd5c69493701b5e7ab55fa7a3163 (diff)
renaming test_skip_unless_env_foo_exists()
-rw-r--r--nova/tests/test_skip_examples.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/nova/tests/test_skip_examples.py b/nova/tests/test_skip_examples.py
index dfbaac74b..b7979d34b 100644
--- a/nova/tests/test_skip_examples.py
+++ b/nova/tests/test_skip_examples.py
@@ -31,7 +31,7 @@ class ExampleSkipTestCase(test.TestCase):
def test_skip_if_env_user_exists(self):
x = 1
- @test.skip_unless(os.getenv("BLAH"),
- "Skipping -- Environment variable BLAH does not exist")
- def test_skip_unless_env_blah_exists(self):
+ @test.skip_unless(os.getenv("FOO"),
+ "Skipping -- Environment variable FOO does not exist")
+ def test_skip_unless_env_foo_exists(self):
x = 1