Provide Add Path support for all AFI/SAFI
[bgpcep.git] / bgp / path-selection-mode / src / test / java / org / opendaylight / protocol / bgp / mode / impl / add / all / paths / PathSelectionModeFactoryTest.java
index beec0f61ca4f2cfc853f7e6f4ed1fe36d9f52e69..41660bf76d802ff842edacfd8d6324c5c93d0501 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 AllPathSelection(this.peerTracker);
         Assert.assertTrue(psm.createRouteEntry(true) instanceof ComplexRouteEntry);
-        Assert.assertTrue(psm.createRouteEntry(false) instanceof SimpleRouteEntry);
     }
 }