We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d23009b commit 551b040Copy full SHA for 551b040
1 file changed
tests/integration/test_app_restricted.py
@@ -84,15 +84,14 @@ async def test_authorised_application_not_supported_for_user_restricted(
84
assert issue_details["code"] == "NO_ACCESS"
85
86
def test_authorised_application_supported_for_app_restricted(
87
- self, access_code, service_url
+ self, app_restricted_access_code, service_url
88
):
89
client_request_headers = {
90
- _HEADER_AUTHORIZATION: "Bearer " + access_code,
+ _HEADER_AUTHORIZATION: "Bearer " + app_restricted_access_code,
91
RenamedHeader.CORRELATION_ID.original: _EXPECTED_CORRELATION_ID,
92
_HEADER_REQUEST_ID: "DUMMY", # this must be less than 10 characters
93
}
94
95
- # changed to access_code from app_restricted_access_code
96
97
# Make the API call
98
response = requests.get(
0 commit comments