summaryrefslogtreecommitdiffstats
path: root/tests/test_import_legacy.py
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2013-06-27 10:35:39 -0500
committerAdam Young <ayoung@redhat.com>2013-06-28 00:12:20 -0400
commit911c3156563c4e33bff3b4652b30c744f8b12de6 (patch)
treeb51b11612bb735a51fe537b68430f3fd961ba850 /tests/test_import_legacy.py
parent6c6d15ca8cc7376e0fff2d442b2cda8eebb324cf (diff)
downloadkeystone-911c3156563c4e33bff3b4652b30c744f8b12de6.tar.gz
keystone-911c3156563c4e33bff3b4652b30c744f8b12de6.tar.xz
keystone-911c3156563c4e33bff3b4652b30c744f8b12de6.zip
Stop passing context to managers (bug 1194938)
We don't have a use case for passing the request context to the manager layer, so this patch removes a bunch of cruft. Change-Id: Ic6435782c4c9f32e38c7800172645cc1af23ea09
Diffstat (limited to 'tests/test_import_legacy.py')
-rw-r--r--tests/test_import_legacy.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_import_legacy.py b/tests/test_import_legacy.py
index bc7f347a..bafc076a 100644
--- a/tests/test_import_legacy.py
+++ b/tests/test_import_legacy.py
@@ -74,7 +74,7 @@ class ImportLegacy(test.TestCase):
# check password hashing
user_ref, tenant_ref, metadata_ref = self.identity_man.authenticate(
- {}, user_id=admin_id, password='secrete')
+ user_id=admin_id, password='secrete')
# check catalog
self._check_catalog(migration)
@@ -91,7 +91,7 @@ class ImportLegacy(test.TestCase):
# check password hashing
user_ref, tenant_ref, metadata_ref = self.identity_man.authenticate(
- {}, user_id=admin_id, password='secrete')
+ user_id=admin_id, password='secrete')
# check catalog
self._check_catalog(migration)
@@ -108,7 +108,7 @@ class ImportLegacy(test.TestCase):
# check password hashing
user_ref, tenant_ref, metadata_ref = self.identity_man.authenticate(
- {}, user_id=admin_id, password='secrete')
+ user_id=admin_id, password='secrete')
# check catalog
self._check_catalog(migration)