From 20ecd99441ba8fc3d58b05d55c08eb17dd43b024 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 2 May 2011 13:26:46 +0530 Subject: Added latest changes to sirish branch with pagination for get tenants --- test/unit/test_identity.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/unit') diff --git a/test/unit/test_identity.py b/test/unit/test_identity.py index 24a31104..f8dca4a1 100644 --- a/test/unit/test_identity.py +++ b/test/unit/test_identity.py @@ -1,7 +1,8 @@ import os import sys # Need to access identity module -sys.path.append(os.path.abspath(os.path.join(os.path.abspath( __file__ ), '..', '..', '..', '..', 'keystone'))) +sys.path.append(os.path.abspath(os.path.join(os.path.abspath(__file__), + '..', '..', '..', '..', 'keystone'))) from keystone import identity import unittest from webtest import TestApp @@ -970,6 +971,5 @@ class delete_tenant_test(tenant_test): self.assertEqual(204, int(resp['status'])) - if __name__ == '__main__': unittest.main() -- cgit