From af4a47dd7ff55629b8e3f6969c84d848cee890e1 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 17 Mar 2026 08:24:17 -0700 Subject: [PATCH] fix test for pyjwt upgrade --- tests/app/authentication/test_authentication.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/authentication/test_authentication.py b/tests/app/authentication/test_authentication.py index c83d8b7d5..9d51fce07 100644 --- a/tests/app/authentication/test_authentication.py +++ b/tests/app/authentication/test_authentication.py @@ -239,7 +239,7 @@ def test_decode_jwt_token_returns_error_with_no_secrets(client): def test_requires_auth_should_not_allow_service_id_with_the_wrong_data_type( - client, service_jwt_secret, service_id + client, service_jwt_secret ): token = create_jwt_token( client_id="not-a-valid-id", @@ -256,7 +256,7 @@ def test_requires_auth_should_not_allow_service_id_with_the_wrong_data_type( def test_requires_auth_should_not_allow_service_id_with_a_non_string( - client, service_jwt_secret, service_id + client, service_jwt_secret ): with pytest.raises(TypeError): create_jwt_token(