summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJesse Andrews <anotherjesse@gmail.com>2011-12-19 10:00:39 -0800
committerJesse Andrews <anotherjesse@gmail.com>2011-12-19 10:00:39 -0800
commitf765daf3360727c2baee0cfc9114d8728c1c4336 (patch)
treede7373a1eb8f873d6d67253ace0dade8e85095c6 /tests
parent977227ce3e6b93d2f8408858f472b3c0e02caf21 (diff)
downloadpython-keystoneclient-f765daf3360727c2baee0cfc9114d8728c1c4336.tar.gz
finish removing project_id
Diffstat (limited to 'tests')
-rw-r--r--tests/test_http.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_http.py b/tests/test_http.py
index 96a38ee..4da7b55 100644
--- a/tests/test_http.py
+++ b/tests/test_http.py
@@ -11,8 +11,8 @@ mock_request = mock.Mock(return_value=(fake_response, fake_body))
def get_client():
- cl = client.HTTPClient(username="username", password="apikey",
- project_id="project_id", auth_url="auth_test")
+ cl = client.HTTPClient(username="username", password="password",
+ tenant_id="tenant", auth_url="auth_test")
return cl