File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
quickfixj-core/src/test/java/quickfix/mina Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ public void testAsynchronousSend() throws Exception {
5353 boolean result = responder .send ("abcd" );
5454
5555 assertTrue (result );
56- verify (mockIoSession ).getAttribute (SessionConnector .QF_SESSION );
5756 verify (mockIoSession ).write ("abcd" );
5857 verifyNoMoreInteractions (mockWriteFuture );
5958 verifyNoMoreInteractions (mockIoSession );
@@ -71,7 +70,6 @@ public void testSynchronousSend() throws Exception {
7170 boolean result = responder .send ("abcd" );
7271
7372 assertTrue (result );
74- verify (mockIoSession ).getAttribute (SessionConnector .QF_SESSION );
7573 verify (mockIoSession ).write ("abcd" );
7674 verify (mockWriteFuture ).awaitUninterruptibly (timeout );
7775 verifyNoMoreInteractions (mockWriteFuture );
You can’t perform that action at this time.
0 commit comments