summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2013-01-09 13:25:39 -0600
committerDolph Mathews <dolph.mathews@gmail.com>2013-01-09 13:25:43 -0600
commit7490cab8dcd9fd7c4a10f597358f34f1844e2cd6 (patch)
tree1a91dd1a4c545afdccb3cffa40056cf72e1d5487 /tests
parent788f6c5ee60bea0146ae0f86a7aec9430654be8d (diff)
downloadkeystone-7490cab8dcd9fd7c4a10f597358f34f1844e2cd6.tar.gz
keystone-7490cab8dcd9fd7c4a10f597358f34f1844e2cd6.tar.xz
keystone-7490cab8dcd9fd7c4a10f597358f34f1844e2cd6.zip
Correct spelling errors / typos in test names
Change-Id: I4891da0f1d6f4fca5db748f4b53eefe4b26d5559
Diffstat (limited to 'tests')
-rw-r--r--tests/test_exception.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_exception.py b/tests/test_exception.py
index eb67098b..b889ee3f 100644
--- a/tests/test_exception.py
+++ b/tests/test_exception.py
@@ -86,7 +86,7 @@ class SecurityErrorTestCase(ExceptionTestCase):
self.assertValidJsonRendering(e)
self.assertNotIn(risky_info, str(e))
- def test_unauthroized_exposure_in_debug(self):
+ def test_unauthorized_exposure_in_debug(self):
CONF.debug = True
risky_info = uuid.uuid4().hex
@@ -94,7 +94,7 @@ class SecurityErrorTestCase(ExceptionTestCase):
self.assertValidJsonRendering(e)
self.assertIn(risky_info, str(e))
- def test_foribdden_exposure(self):
+ def test_forbidden_exposure(self):
CONF.debug = False
risky_info = uuid.uuid4().hex
@@ -102,7 +102,7 @@ class SecurityErrorTestCase(ExceptionTestCase):
self.assertValidJsonRendering(e)
self.assertNotIn(risky_info, str(e))
- def test_forbidden_exposure_in_Debug(self):
+ def test_forbidden_exposure_in_debug(self):
CONF.debug = True
risky_info = uuid.uuid4().hex