BUG-6237: Topology freezes or slows down due to java.util.concurrent.TimeoutException
[bgpcep.git] / bgp / path-selection-mode / src / test / java / org / opendaylight / protocol / bgp / mode / impl / base / BaseRouteEntryTest.java
index 63ffc2e16b9cc85333eead68ceb20c34bcc596a3..a297a4dc455a7eef03211998773518501654c592 100644 (file)
@@ -67,7 +67,7 @@ public class BaseRouteEntryTest extends AbstractRouteEntryTest {
 
     private void testAddRouteSelectBestAndWriteOnDS() {
         this.testBARE.addRoute(ROUTER_ID, REMOTE_PATH_ID, this.ribSupport.routeAttributesIdentifier(), this.attributes);
-        assertFalse(this.testBARE.getOffsets().isEmty());
+        assertFalse(this.testBARE.getOffsets().isEmpty());
         this.testBARE.selectBest(AS);
         this.testBARE.updateRoute(TABLES_KEY, this.peerPT, LOC_RIB_TARGET, this.ribSupport, this.discCache, this.tx, ROUTE_ID_PA);
         Map<YangInstanceIdentifier, Long> yiiCount = this.yIIChanges.stream().collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));