File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
c-sharp-chat/PubnubChatApi/PubNubChatApi.Tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -194,17 +194,17 @@ public async Task TestMarkAllMessagesAsRead()
194194 var markTestChannel = TestUtils . AssertOperation ( await chat . CreatePublicConversation ( ) ) ;
195195 await markTestChannel . Join ( ) ;
196196
197- await Task . Delay ( 3000 ) ;
197+ await Task . Delay ( 4000 ) ;
198198
199199 await markTestChannel . SendText ( "wololo" , new SendTextParams ( ) { StoreInHistory = true } ) ;
200200
201- await Task . Delay ( 3000 ) ;
201+ await Task . Delay ( 4000 ) ;
202202
203203 Assert . True ( TestUtils . AssertOperation ( await chat . GetUnreadMessagesCounts ( ) ) . Any ( x => x . ChannelId == markTestChannel . Id && x . Count > 0 ) ) ;
204204
205205 TestUtils . AssertOperation ( await chat . MarkAllMessagesAsRead ( ) ) ;
206206
207- await Task . Delay ( 5000 ) ;
207+ await Task . Delay ( 7000 ) ;
208208
209209 var counts = TestUtils . AssertOperation ( await chat . GetUnreadMessagesCounts ( ) ) ;
210210
You can’t perform that action at this time.
0 commit comments