Migrate boolean getters
[bgpcep.git] / bgp / rib-impl / src / test / java / org / opendaylight / protocol / bgp / rib / impl / ParserToSalTest.java
index 2cd0c5c975ad47675111d640585f14b54b25dde4..5402f1a8d577eede04c6530be4917eb655a2aa0b 100644 (file)
@@ -151,7 +151,7 @@ public class ParserToSalTest extends DefaultRibPoliciesMockTest {
                 for (final Tables table : tables.values()) {
                     if (table.getAfi().equals(tableType.getAfi()) && table.getSafi().equals(tableType.getSafi())) {
                         found = true;
-                        assertEquals(Boolean.TRUE, table.getAttributes().isUptodate());
+                        assertEquals(Boolean.TRUE, table.getAttributes().getUptodate());
                     }
                 }
                 assertTrue(found);