File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
from atlassian_jwt_auth .tests import utils
13
13
14
14
15
- class NoneAlgorithmJwtSigner (atlassian_jwt_auth .signer .JWTAuthSigner ):
16
- """ A JwtSigner that generates JWTs using the none algorithm
15
+ class NoneAlgorithmJwtAuthSigner (atlassian_jwt_auth .signer .JWTAuthSigner ):
16
+ """ A JWTAuthSigner that generates JWTs using the none algorithm
17
17
and supports specifying arbitrary alg jwt header values.
18
18
"""
19
19
@@ -72,7 +72,7 @@ def test_verify_jwt_with_none_algorithm(self):
72
72
verifier = self ._setup_jwt_auth_verifier (self ._public_key_pem )
73
73
private_key_ret = atlassian_jwt_auth .key .StaticPrivateKeyRetriever (
74
74
self ._example_key_id , self ._private_key_pem .decode ())
75
- jwt_signer = NoneAlgorithmJwtSigner (
75
+ jwt_signer = NoneAlgorithmJwtAuthSigner (
76
76
issuer = self ._example_issuer ,
77
77
private_key_retriever = private_key_ret ,
78
78
)
You can’t perform that action at this time.
0 commit comments