Skip to content

Commit

Permalink
ignore a line in a test with a purposeful (?) typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Feb 27, 2024
1 parent f00c8fd commit 68a7e55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_implicit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
"""
Expand Down

0 comments on commit 68a7e55

Please sign in to comment.