Skip to content
This repository has been archived by the owner on Mar 12, 2022. It is now read-only.

Commit

Permalink
Use proper syntax for py3, refs #4
Browse files Browse the repository at this point in the history
  • Loading branch information
Mounir Messelmeni committed Sep 28, 2021
1 parent 4a553f7 commit f87c60c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_ibancom.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,4 @@ def test_subscription_errpr(request_get):
client = ibancom.IBANClient(api_key="FAKE_KEY")
with pytest.raises(ibancom.IBANApiException) as exc_info:
client.get(iban=TEST_IBAN)
assert exc_info.value.message == "Subscription expired"
assert str(exc_info.value) == "Subscription expired"

0 comments on commit f87c60c

Please sign in to comment.