diff options
| author | Jesse Andrews <anotherjesse@gmail.com> | 2011-12-19 10:00:39 -0800 |
|---|---|---|
| committer | Jesse Andrews <anotherjesse@gmail.com> | 2011-12-19 10:00:39 -0800 |
| commit | f765daf3360727c2baee0cfc9114d8728c1c4336 (patch) | |
| tree | de7373a1eb8f873d6d67253ace0dade8e85095c6 /tests | |
| parent | 977227ce3e6b93d2f8408858f472b3c0e02caf21 (diff) | |
| download | python-keystoneclient-f765daf3360727c2baee0cfc9114d8728c1c4336.tar.gz | |
finish removing project_id
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_http.py | 4 |
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 |
