From 49ed69478dbb8f92bcf4cb988e17ef03bb8e0e45 Mon Sep 17 00:00:00 2001 From: enisn Date: Fri, 23 Jan 2026 12:39:32 +0300 Subject: [PATCH] Update ChatClientAccessor_Tests.cs --- .../Volo.Abp.AI.Tests/Volo/Abp/AI/ChatClientAccessor_Tests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/test/Volo.Abp.AI.Tests/Volo/Abp/AI/ChatClientAccessor_Tests.cs b/framework/test/Volo.Abp.AI.Tests/Volo/Abp/AI/ChatClientAccessor_Tests.cs index f384bba591..5feaceb528 100644 --- a/framework/test/Volo.Abp.AI.Tests/Volo/Abp/AI/ChatClientAccessor_Tests.cs +++ b/framework/test/Volo.Abp.AI.Tests/Volo/Abp/AI/ChatClientAccessor_Tests.cs @@ -45,10 +45,10 @@ public class ChatClientAccessor_Tests : AbpIntegratedTest public void Should_Resolve_Default_ChatClient_For_NonConfigured_Workspace() { // Arrange & Act - var chatClientAccessor = GetRequiredService>(); + var chatClient = GetRequiredService>(); // Assert - chatClientAccessor.ShouldNotBeNull(); + chatClient.ShouldNotBeNull(); } public class NonConfiguredWorkspace