diff options
author | Thomas Duval <thomas.duval@orange.com> | 2018-01-04 16:52:34 +0100 |
---|---|---|
committer | Thomas Duval <thomas.duval@orange.com> | 2018-01-04 16:52:34 +0100 |
commit | 3a3072d2e1c4a17375405a6e7e8fd9adeab0c434 (patch) | |
tree | 82f408efbe26df1a03b669810e0977cd622cac10 /moon_interface/tests/unit_python/api | |
parent | 64232ea214cb6fdccee5c53a360231c2f2802b27 (diff) |
wrapper: send pdp_id to interface instead of keystone_project_id
Change-Id: I847cad7d096ae8af23334eb049d583d4ed06d8d4
Diffstat (limited to 'moon_interface/tests/unit_python/api')
-rw-r--r-- | moon_interface/tests/unit_python/api/test_authz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/moon_interface/tests/unit_python/api/test_authz.py b/moon_interface/tests/unit_python/api/test_authz.py index 84605203..10957218 100644 --- a/moon_interface/tests/unit_python/api/test_authz.py +++ b/moon_interface/tests/unit_python/api/test_authz.py @@ -10,7 +10,7 @@ def test_authz_true(context): server = moon_interface.server.create_server() client = server.app.test_client() req = client.get("/authz/{p_id}/{s_id}/{o_id}/{a_id}".format( - p_id=context["project_id"], + p_id=context["pdp_id"], s_id=context["subject_name"], o_id=context["object_name"], a_id=context["action_name"], |