diff --git a/tests/client/test_channel.py b/tests/client/test_channel.py index 221907d..7fea92d 100644 --- a/tests/client/test_channel.py +++ b/tests/client/test_channel.py @@ -173,7 +173,7 @@ def test_get_token_success(self) -> None: token_data = helper.get_token() assert token_data.access_token == "new_access_token" - assert token_data.scheme == "Bearer" + assert token_data.scheme == "bearer" assert helper._token_data is not None assert helper._token_data.expires_at is not None @@ -198,7 +198,7 @@ def test_get_token_respects_token_type(self) -> None: token_data = helper.get_token() - assert token_data.scheme == "Dpop" + assert token_data.scheme == "DPoP" def test_get_token_defaults_to_bearer(self) -> None: """Test that scheme defaults to Bearer when token_type is absent."""