Bug-2631 - Fixed BGP connection collision detection
[bgpcep.git] / bgp / rib-impl / src / test / java / org / opendaylight / protocol / bgp / rib / impl / SpeakerSessionMock.java
index 72bdf15dcec517accff6f78a2bd0307b639fa7dc..09ef537bf0a685116da01c368235ff6cd4fc7d75 100644 (file)
@@ -22,7 +22,7 @@ public class SpeakerSessionMock extends BGPSessionImpl {
     private final BGPSessionListener client;
 
     SpeakerSessionMock(final BGPSessionListener listener, final BGPSessionListener client) {
-        super(listener, mock(Channel.class), new OpenBuilder().setHoldTimer(5).build(), 10);
+        super(listener, mock(Channel.class), new OpenBuilder().setHoldTimer(5).build(), 10, null);
         this.client = client;
     }