From 68a7e55fbb3943d3c43879767fc8b6aa3da58202 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Wed, 24 Jan 2024 13:33:00 -0500 Subject: [PATCH] ignore a line in a test with a purposeful (?) typo --- tests/test_implicit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_implicit.py b/tests/test_implicit.py index 7d710e9a1..44629217a 100644 --- a/tests/test_implicit.py +++ b/tests/test_implicit.py @@ -361,7 +361,7 @@ def test_id_token_skip_authorization_completely_missing_nonce(self): response = self.client.get(reverse("oauth2_provider:authorize"), data=query_data) self.assertEqual(response.status_code, 302) self.assertIn("error=invalid_request", response["Location"]) - self.assertIn("error_description=Request+is+missing+mandatory+nonce+paramete", response["Location"]) + self.assertIn("error_description=Request+is+missing+mandatory+nonce+paramete", response["Location"]) # pragma: codespell-ignore def test_id_token_post_auth_deny(self): """