From 0c5d9a46bd93bfdffcf667b7da3937a5d4406da9 Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Mon, 13 Oct 2025 18:07:52 +0200 Subject: [PATCH] test: fix typo --- tests/integration/test_oauth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):