Skip to content

Commit

Permalink
Remove unneeded fstring from async test
Browse files Browse the repository at this point in the history
  • Loading branch information
cgearing committed Jul 10, 2023
1 parent 34e7253 commit 6af303e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth0/test_async/test_asyncify.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ async def test_user_info(self, mocked):
)
mock.assert_called_with(
Attrs(path="/userinfo"),
headers={**headers, "Authorization": f"Bearer access-token-example"},
headers={**headers, "Authorization": "Bearer access-token-example"},
timeout=ANY,
allow_redirects=True,
params=None,
Expand Down

0 comments on commit 6af303e

Please sign in to comment.