Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ezilber-akamai committed Oct 17, 2024
1 parent a5cad7b commit 6854c98
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/unit/test_api_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ def test_request_debug_info(self):
output = stderr_buf.getvalue()
assert "> GET https://definitely.linode.com/" in output
assert "> cool: test" in output
assert "> Authorization: Bearer *******************************" in output
assert (
"> Authorization: Bearer *******************************" in output
)
assert "> Body:" in output
assert "> cool body" in output
assert "> " in output
Expand Down

0 comments on commit 6854c98

Please sign in to comment.