Skip to content

Commit

Permalink
fixing black format.
Browse files Browse the repository at this point in the history
  • Loading branch information
elkezza committed May 28, 2024
1 parent a5d26bd commit ecad3f4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ def test_client_error_handling(requests_mock):
client.list_templates()
except ExoscaleAPIServerException as e:
assert "Server error 503" in str(e)
assert '{"message":"Endpoint template temporarily unavailable"}' in str(e)
assert (
'{"message":"Endpoint template temporarily unavailable"}' in str(e)
)


if __name__ == "__main__":
Expand Down

0 comments on commit ecad3f4

Please sign in to comment.