File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/SocketIOClient.Test/SocketIOTests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ public virtual async Task ManuallyReconnectionTest()
180180
181181 int connectedCount = 0 ;
182182 int disconnectedCount = 0 ;
183- int pongCount = 0 ;
183+ // int pongCount = 0;
184184
185185 client . OnConnected += ( sender , e ) =>
186186 {
@@ -196,7 +196,7 @@ public virtual async Task ManuallyReconnectionTest()
196196 } ;
197197 client . OnPong += async ( sender , e ) =>
198198 {
199- pongCount ++ ;
199+ // pongCount++;
200200 await client . EmitAsync ( "sever disconnect" ) ;
201201 } ;
202202 await client . ConnectAsync ( ) ;
@@ -205,7 +205,7 @@ public virtual async Task ManuallyReconnectionTest()
205205
206206 Assert . AreEqual ( 2 , connectedCount ) ;
207207 Assert . AreEqual ( 2 , disconnectedCount ) ;
208- Assert . AreEqual ( 2 , pongCount ) ;
208+ // Assert.AreEqual(2, pongCount);
209209 Assert . IsFalse ( client . Connected ) ;
210210 Assert . IsTrue ( client . Disconnected ) ;
211211 }
You can’t perform that action at this time.
0 commit comments