summaryrefslogtreecommitdiff
path: root/tests/test_exceptions.py
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2019-10-21 22:38:34 -0400
committerGitHub <noreply@github.com>2019-10-21 22:38:34 -0400
commit11ac89474b1179925c76450fcc4b3d2042c45f19 (patch)
treedda6b15326cab750f5e52ee57e3125bb5d0a7eee /tests/test_exceptions.py
parentae080f472c913ad94456fd9e10b05ec2d038b7cc (diff)
downloadpyjwt-11ac89474b1179925c76450fcc4b3d2042c45f19.tar.gz
DX Tweaks (#450)
* Setup pre-commit hooks * Run initial `tox -e lint` * Fix package name * Fix .travis.yml
Diffstat (limited to 'tests/test_exceptions.py')
-rw-r--r--tests/test_exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_exceptions.py b/tests/test_exceptions.py
index 9e7f91e..90030a7 100644
--- a/tests/test_exceptions.py
+++ b/tests/test_exceptions.py
@@ -2,6 +2,6 @@ from jwt.exceptions import MissingRequiredClaimError
def test_missing_required_claim_error_has_proper_str():
- exc = MissingRequiredClaimError('abc')
+ exc = MissingRequiredClaimError("abc")
assert str(exc) == 'Token is missing the "abc" claim'