X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frestconf%2Fimpl%2Ftest%2Fstructures%2FCompareLf.java;h=12ab0732025a2d1fdada1f58f6cf9bceba67d52b;hp=e935a268a2d54f73a7263818dc52c9a2a942ce0d;hb=783679071e01620bfc468cb9f9472f2a1030ae00;hpb=6fd408a04fe4a3611843e2246ece6d7c34b76903 diff --git a/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/structures/CompareLf.java b/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/structures/CompareLf.java index e935a268a2..12ab073202 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/structures/CompareLf.java +++ b/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/structures/CompareLf.java @@ -7,7 +7,8 @@ */ package org.opendaylight.controller.sal.restconf.impl.test.structures; -import static org.junit.Assert.*; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; import org.junit.Test; @@ -19,7 +20,7 @@ public class CompareLf { Lf lf2 = new Lf("name", "value"); Lf lf3 = new Lf("name1", "value"); Lf lf4 = new Lf("name", "value1"); - + assertTrue(lf1.equals(lf2)); assertFalse(lf1.equals(lf3)); assertFalse(lf1.equals(lf4));