summaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorZiad Sawalha <github@highbridgellc.com>2011-05-26 01:40:34 -0500
committerZiad Sawalha <github@highbridgellc.com>2011-05-26 01:40:34 -0500
commitbde59e78a37d7af18b6ca85491ee50e367b2750f (patch)
treec108128b47318e5cd0b6c17e74d0c50f2b07b4d6 /test/unit
parent2c00b1fcc8cf763f1c8fac4800fdcccc1eb3e2c4 (diff)
API Spec updates
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/test_groups.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unit/test_groups.py b/test/unit/test_groups.py
index 333f419b..63e08c24 100644
--- a/test/unit/test_groups.py
+++ b/test/unit/test_groups.py
@@ -63,7 +63,7 @@ class CreateGlobalGroupTest(GlobalGroupTest):
str(self.auth_token))
if int(resp_new['status']) == 500:
- self.fail('IDM fault')
+ self.fail('Identity fault')
elif int(resp_new['status']) == 503:
self.fail('Service Not Available')
if int(resp_new['status']) not in (200, 201):
@@ -76,7 +76,7 @@ class CreateGlobalGroupTest(GlobalGroupTest):
str(self.auth_token))
if int(resp_new['status']) == 500:
- self.fail('IDM fault')
+ self.fail('Identity fault')
elif int(resp_new['status']) == 503:
self.fail('Service Not Available')
@@ -88,7 +88,7 @@ class CreateGlobalGroupTest(GlobalGroupTest):
resp_new, content_new = utils.create_global_group(self.global_group,
str(self.auth_token))
if int(resp_new['status']) == 500:
- self.fail('IDM fault')
+ self.fail('Identity fault')
elif int(resp_new['status']) == 503:
self.fail('Service Not Available')
self.assertEqual(409, int(resp_new['status']))
@@ -100,7 +100,7 @@ class CreateGlobalGroupTest(GlobalGroupTest):
str(self.auth_token))
content_new = etree.fromstring(content_new)
if int(resp_new['status']) == 500:
- self.fail('IDM fault')
+ self.fail('Identity fault')
elif int(resp_new['status']) == 503:
self.fail('Service Not Available')
self.assertEqual(409, int(resp_new['status']))