From bce37a1116c4ac1f13dd69f2f69730629101cb6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Voron?= Date: Thu, 21 Apr 2022 11:20:32 +0200 Subject: [PATCH] Fix unit test following httpx-oauth update --- tests/test_router_oauth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_router_oauth.py b/tests/test_router_oauth.py index ecf40699..89194b3f 100644 --- a/tests/test_router_oauth.py +++ b/tests/test_router_oauth.py @@ -211,7 +211,7 @@ class TestCallback: assert response.status_code == status.HTTP_200_OK get_access_token_mock.assert_called_once_with( - "CODE", "http://www.tintagel.bt/callback" + "CODE", "http://www.tintagel.bt/callback", None ) data = cast(Dict[str, Any], response.json())