diff --git a/tests/integration/test_oauth.py b/tests/integration/test_oauth.py index fc8bbd6..7f9d1a7 100644 --- a/tests/integration/test_oauth.py +++ b/tests/integration/test_oauth.py @@ -19,9 +19,9 @@ class TestOAuthClient: capabilities = await nc_oauth_client.capabilities() assert capabilities is not None - assert "version" in capabilities + assert "ocs" in capabilities logger.info( - f"OAuth client successfully fetched capabilities: {capabilities.get('version')}" + f"OAuth client successfully fetched capabilities: {capabilities.get('ocs').get('meta')}" ) async def test_oauth_client_notes_list(self, nc_oauth_client: NextcloudClient):