We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67d1f70 commit e169449Copy full SHA for e169449
1 file changed
Assets/Plugins/StreamChat/Tests/StatefulClient/ChannelsTests.cs
@@ -330,7 +330,8 @@ await WaitWhileFalseAsync(
330
331
await channel.UpdatePartialAsync(unsetFields: new string[] { "owned_dogs", "breakfast" });
332
333
- //StreamTodo: this can potentially be non deterministic because we rely on WS event being received before call ends
+ await WaitWhileTrueAsync(
334
+ () => new[] { "owned_dogs", "breakfast" }.All(channel.CustomData.ContainsKey));
335
336
Assert.IsFalse(channel.CustomData.ContainsKey("owned_dogs"));
337
Assert.IsFalse(channel.CustomData.ContainsKey("breakfast"));
0 commit comments