summaryrefslogtreecommitdiff
path: root/tests/test_utils.py
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2018-12-06 07:32:27 -0500
committerJosé Padilla <jpadilla@webapplicate.com>2018-12-06 07:32:27 -0500
commitb65e1ac6dc4d11801f3642eaab34ae6a54162c18 (patch)
treec6688abf6d246f9729278c8ce76ea106c3604634 /tests/test_utils.py
parent3f735fdf68cc865a6241aae1fcf92a410c73fbdb (diff)
downloadpyjwt-b65e1ac6dc4d11801f3642eaab34ae6a54162c18.tar.gz
Fix pytest and pinned test dependencies1.7.1
Diffstat (limited to 'tests/test_utils.py')
-rw-r--r--tests/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py
index 7549faa..1408af2 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.py
@@ -11,7 +11,7 @@ import pytest
(255, b'_w'),
(65537, b'AQAB'),
(123456789, b'B1vNFQ'),
- pytest.mark.xfail((-1, ''), raises=ValueError)
+ pytest.param(-1, '', marks=pytest.mark.xfail(raises=ValueError))
])
def test_to_base64url_uint(inputval, expected):
actual = to_base64url_uint(inputval)