Skip to content

Commit

Permalink
Fixing load tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrichlake committed Nov 6, 2023
1 parent d376a57 commit 0cfa807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operations/locustfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def get_auth_request_body():
with open("mock_credentials/report-stream-valid-token.jwt") as f:
auth_token = f.read()
params = urllib.parse.urlencode(
{"scope": auth_scope, "client_assertion": auth_token}
{"scope": auth_scope, "client_assertion": auth_token.strip()}
)
return params.encode("utf-8")

Expand Down

0 comments on commit 0cfa807

Please sign in to comment.