We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c3cce5 commit 7d66bc9Copy full SHA for 7d66bc9
integration/jwt_testbed.py
@@ -48,7 +48,7 @@ def api_key_authorization_header(token):
48
49
50
def jwt_authorization_header(token):
51
- return {"Authorization": "Bearer " + token}
+ return {"Authorization": "Connect-Bootstrap " + token}
52
53
54
def generate_jwt_secured_header(keypath):
@@ -246,7 +246,7 @@ def endpoint_subsequent_calls(step, env):
246
247
response = requests.post(env["bootstrap_endpoint"], headers=generate_jwt_secured_header(env["keypath"]))
248
249
- assert_status_code(response, 400)
+ assert_status_code(response, 403)
250
251
success()
252
0 commit comments