summaryrefslogtreecommitdiff
path: root/functional/tests/identity/v3/test_project.py
diff options
context:
space:
mode:
Diffstat (limited to 'functional/tests/identity/v3/test_project.py')
-rw-r--r--functional/tests/identity/v3/test_project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functional/tests/identity/v3/test_project.py b/functional/tests/identity/v3/test_project.py
index 204a8d14..6c278691 100644
--- a/functional/tests/identity/v3/test_project.py
+++ b/functional/tests/identity/v3/test_project.py
@@ -65,7 +65,7 @@ class ProjectTests(test_identity.IdentityTests):
'project list --domain %s' % self.domain_name)
items = self.parse_listing(raw_output)
self.assert_table_structure(items, test_identity.BASIC_LIST_HEADERS)
- self.assertInOutput(project_name, raw_output)
+ self.assertIn(project_name, raw_output)
self.assertTrue(len(items) > 0)
def test_project_set(self):