Skip to content

Commit

Permalink
feat: Adding python3.12 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Feb 29, 2024
1 parent a482345 commit 6d80578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lti_consumer/tests/unit/plugin/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ def test_access_token_endpoint(self):
body = self.get_body(create_jwt(self.key, {}))
response = self.client.post(self.url, data=body)

self.mock_client.access_token.called_once_with(body)
self.mock_client.access_token.assert_called_once_with(body)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), token)

Expand Down

0 comments on commit 6d80578

Please sign in to comment.