Skip to content

Commit b892781

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent c7525cb commit b892781

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

api/tests/unit/custom_auth/jwt_cookie/test_unit_jwt_cookie_authentication.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ def test_authenticate_valid_cookie(self) -> None:
5454
@pytest.mark.parametrize(
5555
"exception_class", [InvalidToken, TokenError, AuthenticationFailed]
5656
)
57-
def test_authenticate_invalid_cookie(self, exception_class: Type[Exception]) -> None:
57+
def test_authenticate_invalid_cookie(
58+
self, exception_class: Type[Exception]
59+
) -> None:
5860
# Given
5961
auth = JWTCookieAuthentication()
6062
request = MagicMock(spec=Request)

0 commit comments

Comments
 (0)