Provide Add Path support for all AFI/SAFI
[bgpcep.git] / bgp / path-selection-mode / src / test / java / org / opendaylight / protocol / bgp / mode / impl / add / n / paths / PathSelectionModeFactoryTest.java
index a9d7827e8808f2ac611189a47fc468fecdbaa3bf..0b58015108ad615470fbfe73e4d8df16ebf4d28e 100644 (file)
@@ -14,9 +14,8 @@ import org.opendaylight.protocol.bgp.mode.impl.BGPPeerTrackerMock;
 
 public class PathSelectionModeFactoryTest extends BGPPeerTrackerMock {
     @Test
-    public void testCreateBestPathSelectionStrategy() throws Exception {
+    public void testCreateBestPathSelectionStrategy() {
         final PathSelectionMode psm = new AddPathBestNPathSelection(2L, this.peerTracker);
         Assert.assertTrue(psm.createRouteEntry(true) instanceof ComplexRouteEntry);
-        Assert.assertTrue(psm.createRouteEntry(false) instanceof SimpleRouteEntry);
     }
 }
\ No newline at end of file