summaryrefslogtreecommitdiff
path: root/tests/test_api_jwt.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_api_jwt.py')
-rw-r--r--tests/test_api_jwt.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_api_jwt.py b/tests/test_api_jwt.py
index 8fdb80c..d4e651f 100644
--- a/tests/test_api_jwt.py
+++ b/tests/test_api_jwt.py
@@ -220,7 +220,7 @@ class TestJWT:
)
def test_decodes_valid_es256_jwt(self, jwt):
example_payload = {"hello": "world"}
- with open("tests/keys/testkey_ec.pub", "r") as fp:
+ with open("tests/keys/testkey_ec.pub") as fp:
example_pubkey = fp.read()
example_jwt = (
b"eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9."
@@ -242,7 +242,7 @@ class TestJWT:
)
def test_decodes_valid_rs384_jwt(self, jwt):
example_payload = {"hello": "world"}
- with open("tests/keys/testkey_rsa.pub", "r") as fp:
+ with open("tests/keys/testkey_rsa.pub") as fp:
example_pubkey = fp.read()
example_jwt = (
b"eyJhbGciOiJSUzM4NCIsInR5cCI6IkpXVCJ9"
@@ -556,7 +556,7 @@ class TestJWT:
def default(self, o):
if isinstance(o, Decimal):
return "it worked"
- return super(CustomJSONEncoder, self).default(o)
+ return super().default(o)
data = {"some_decimal": Decimal("2.2")}