Skip to content

Commit 754b783

Browse files
authored
Corrected unit test
1 parent 70d6e19 commit 754b783

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

quickfixj-core/src/test/java/quickfix/mina/IoSessionResponderTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)