From 573be9c5e0144e15a825c5d825de6aacdda29ca9 Mon Sep 17 00:00:00 2001 From: Tim O'Farrell Date: Mon, 22 Dec 2025 20:49:24 -0700 Subject: [PATCH] Fix test --- .../test_sharing_shared_conversation_info_service.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/enterprise/tests/unit/test_sharing/test_sharing_shared_conversation_info_service.py b/enterprise/tests/unit/test_sharing/test_sharing_shared_conversation_info_service.py index d74188380d..bacb9edb58 100644 --- a/enterprise/tests/unit/test_sharing/test_sharing_shared_conversation_info_service.py +++ b/enterprise/tests/unit/test_sharing/test_sharing_shared_conversation_info_service.py @@ -323,7 +323,7 @@ class TestSharedConversationInfoService: assert result.items[1].id == conv1.id @pytest.mark.asyncio - async def test_count_public_conversation_info( + async def test_count_shared_conversation_info( self, shared_conversation_info_service, app_conversation_service, @@ -332,21 +332,21 @@ class TestSharedConversationInfoService: ): """Test counting public conversations.""" # Initially should be 0 - count = await shared_conversation_info_service.count_public_conversation_info() + count = await shared_conversation_info_service.count_shared_conversation_info() assert count == 0 # Create a public conversation await app_conversation_service.save_app_conversation_info( sample_conversation_info ) - count = await shared_conversation_info_service.count_public_conversation_info() + count = await shared_conversation_info_service.count_shared_conversation_info() assert count == 1 # Create a private conversation - count should remain 1 await app_conversation_service.save_app_conversation_info( sample_private_conversation_info ) - count = await shared_conversation_info_service.count_public_conversation_info() + count = await shared_conversation_info_service.count_shared_conversation_info() assert count == 1 @pytest.mark.asyncio