Fixup Augmentable and Identifiable methods changing
[openflowplugin.git] / openflowplugin / src / test / java / org / opendaylight / openflowplugin / openflow / md / core / sal / convertor / MeterStatsResponseConvertorTest.java
index 5c5a32ca51bb1241d50a025201af57eac1f21b3c..ade28f7fe50f643bce22286032cefcdd13abe537 100644 (file)
@@ -73,7 +73,7 @@ public class MeterStatsResponseConvertorTest {
         int cnt = 0;
         for (MeterStats meterStats : meterStatsList) {
             assertEquals(new MeterStatsKey(new org.opendaylight.yang.gen.v1.urn.opendaylight.meter.types.rev130918
-                    .MeterId((long) cnt)).getMeterId(), meterStats.getKey().getMeterId());
+                    .MeterId((long) cnt)).getMeterId(), meterStats.key().getMeterId());
             assertEquals(BigInteger.valueOf(cnt), meterStats.getByteInCount().getValue());
             assertEquals(new Long(1000 * cnt), meterStats.getDuration().getNanosecond().getValue());
             assertEquals(new Long(10 * cnt), meterStats.getDuration().getSecond().getValue());