Skip to content

Commit d80c3b5

Browse files
committed
small fix
1 parent 00d64b9 commit d80c3b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jwt_authentication/tests/jwks/different_algorithms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def check_jwt_auth(self, algorithm):
1717
steps.create_user_with_jwt_auth(user_name=user_name)
1818

1919
with And("create private and public keys"):
20-
public_key, private_key_file = steps.generate_ssh_keys(algorithm=algorithm)
20+
public_key, private_key_path = steps.generate_ssh_keys(algorithm=algorithm)
2121

2222
with When("add new validator to the config.xml"):
2323
validator_id = define("validator id", f"jwks_with_{algorithm}")
@@ -35,7 +35,7 @@ def check_jwt_auth(self, algorithm):
3535
steps.create_static_jwt(
3636
user_name=user_name,
3737
algorithm=algorithm,
38-
private_key_path=private_key_file,
38+
private_key_path=private_key_path,
3939
key_id=key_id,
4040
),
4141
)

0 commit comments

Comments
 (0)