From 4be550cf40f24d706cb4e3c42fd3f03e9c786bd0 Mon Sep 17 00:00:00 2001 From: oneRain Date: Sun, 26 Apr 2020 16:15:30 +0800 Subject: [PATCH] =?UTF-8?q?test:=20=E5=AE=8C=E5=96=84=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Test/Realtime.Test/ConversationQuery.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test/Realtime.Test/ConversationQuery.cs b/Test/Realtime.Test/ConversationQuery.cs index 2b2b849..4741ceb 100644 --- a/Test/Realtime.Test/ConversationQuery.cs +++ b/Test/Realtime.Test/ConversationQuery.cs @@ -38,7 +38,7 @@ namespace Realtime.Test { public async Task QueryMemberConversation() { string memberId = "cc1"; LCIMConversationQuery query = new LCIMConversationQuery(client); - query.WhereContains("m", memberId); + query.WhereEqualTo("m", memberId); ReadOnlyCollection conversations = await query.Find(); Assert.Greater(conversations.Count, 0); foreach (LCIMConversation conversation in conversations) {