summaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorroot <root@bsirish.(none)>2011-05-02 13:26:46 +0530
committerroot <root@bsirish.(none)>2011-05-02 13:26:46 +0530
commit20ecd99441ba8fc3d58b05d55c08eb17dd43b024 (patch)
tree59bd111bd882369744b346efe9b31eca5ad4f243 /test/unit
parentc6c0678a10f66ea7cf373b9fe54cc8878133a574 (diff)
downloadkeystone-20ecd99441ba8fc3d58b05d55c08eb17dd43b024.tar.gz
keystone-20ecd99441ba8fc3d58b05d55c08eb17dd43b024.tar.xz
keystone-20ecd99441ba8fc3d58b05d55c08eb17dd43b024.zip
Added latest changes to sirish branch with pagination for get tenants
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/test_identity.py4
1 files changed, 2 insertions, 2 deletions
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()