X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frestconf%2Fimpl%2Ftest%2FRestGetAugmentedElementWhenEqualNamesTest.java;h=bab06e92451985b5a0d95032e99174adb91ba4b0;hb=refs%2Fchanges%2F27%2F8927%2F3;hp=53183c611cf54329d5555b2de8b56b01cedfdf0d;hpb=cb210bea2ab44aa2922ed86232c9db9a10452fc0;p=controller.git diff --git a/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/RestGetAugmentedElementWhenEqualNamesTest.java b/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/RestGetAugmentedElementWhenEqualNamesTest.java index 53183c611c..bab06e9245 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/RestGetAugmentedElementWhenEqualNamesTest.java +++ b/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/RestGetAugmentedElementWhenEqualNamesTest.java @@ -12,7 +12,6 @@ import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import java.io.FileNotFoundException; - import org.junit.BeforeClass; import org.junit.Rule; import org.junit.Test; @@ -47,10 +46,9 @@ public class RestGetAugmentedElementWhenEqualNamesTest { public void nodeWithoutNamespaceHasMoreAugments() { try { controllerContext.toInstanceIdentifier("main:cont/cont1"); - fail( "Expected exception" ); + fail("Expected exception"); } catch (RestconfDocumentedException e) { - assertTrue(e.getErrors().get( 0 ).getErrorMessage().contains( - "is added as augment from more than one module")); + assertTrue(e.getErrors().get(0).getErrorMessage().contains("is added as augment from more than one module")); } } }