summaryrefslogtreecommitdiff
path: root/tests/test_http.py
diff options
context:
space:
mode:
authorJesse Andrews <anotherjesse@gmail.com>2011-12-18 22:08:26 -0800
committerJesse Andrews <anotherjesse@gmail.com>2011-12-18 22:08:26 -0800
commitd37c20ca72fbcdb929601b8af1ef8fedd76e1afd (patch)
treed9764ce7dec6e943220c9eebd6f5bfa09450397d /tests/test_http.py
parent604b748b517f61da29fa3b9e572fdade3bbaa803 (diff)
downloadpython-keystoneclient-d37c20ca72fbcdb929601b8af1ef8fedd76e1afd.tar.gz
remove X-Auth-Project-Id, re-add auth by token support (most tests pass)
Diffstat (limited to 'tests/test_http.py')
-rw-r--r--tests/test_http.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_http.py b/tests/test_http.py
index e91d58f..96a38ee 100644
--- a/tests/test_http.py
+++ b/tests/test_http.py
@@ -33,7 +33,6 @@ class ClientTest(utils.TestCase):
def test_get_call():
resp, body = cl.get("/hi")
headers = {"X-Auth-Token": "token",
- "X-Auth-Project-Id": "project_id",
"User-Agent": cl.USER_AGENT,
}
mock_request.assert_called_with("http://127.0.0.1:5000/"
@@ -52,7 +51,6 @@ class ClientTest(utils.TestCase):
cl.post("/hi", body=[1, 2, 3])
headers = {
"X-Auth-Token": "token",
- "X-Auth-Project-Id": "project_id",
"Content-Type": "application/json",
"User-Agent": cl.USER_AGENT
}