diff --git a/requirements-dev.txt b/requirements-dev.txt index 131609a1..4a2e8dd4 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -145,11 +145,11 @@ httpx[http2]==0.28.1 hyperframe==6.1.0 ; python_full_version >= '3.6.1' -microsoft-kiota-abstractions==1.9.0 +microsoft-kiota-abstractions==1.9.1 -microsoft-kiota-authentication-azure==1.9.0 +microsoft-kiota-authentication-azure==1.9.1 -microsoft-kiota-http==1.9.0 +microsoft-kiota-http==1.9.1 multidict==6.1.0 ; python_version >= '3.7' diff --git a/tests/test_base_graph_request_adapter.py b/tests/test_base_graph_request_adapter.py index 59e7c891..acb8922d 100644 --- a/tests/test_base_graph_request_adapter.py +++ b/tests/test_base_graph_request_adapter.py @@ -16,7 +16,7 @@ def test_create_graph_request_adapter(mock_auth_provider): request_adapter._serialization_writer_factory, SerializationWriterFactoryRegistry ) assert isinstance(request_adapter._http_client, httpx.AsyncClient) - assert request_adapter.base_url == '' + assert request_adapter.base_url == 'https://graph.microsoft.com/v1.0/' def test_create_request_adapter_no_auth_provider():