X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=dom%2Fmdsal-dom-broker%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fmdsal%2Fdom%2Fbroker%2FTestUtils.java;h=1a717d51c13a6ff4ddef31be19110212462c62f0;hb=c37d38386002ed12b279938051813f99a4de70ff;hp=08ff36ec91f9f60bf9f82bb3c98519dce939a585;hpb=093b38a5c2a4f6ed8b015916e4765be29e3d51e2;p=mdsal.git diff --git a/dom/mdsal-dom-broker/src/test/java/org/opendaylight/mdsal/dom/broker/TestUtils.java b/dom/mdsal-dom-broker/src/test/java/org/opendaylight/mdsal/dom/broker/TestUtils.java index 08ff36ec91..1a717d51c1 100644 --- a/dom/mdsal-dom-broker/src/test/java/org/opendaylight/mdsal/dom/broker/TestUtils.java +++ b/dom/mdsal-dom-broker/src/test/java/org/opendaylight/mdsal/dom/broker/TestUtils.java @@ -40,7 +40,7 @@ abstract class TestUtils { private static final QName TOP_LEVEL_LIST_QNAME = QName.create(TOP_QNAME, "top-level-list"); private static final QName TOP_LEVEL_LIST_KEY_QNAME = QName.create(TOP_QNAME, "name"); - private final static MapEntryNode topLevelListNormalized = ImmutableMapEntryNodeBuilder.create() + private static final MapEntryNode TOP_LEVEL_LIST_NODE = ImmutableMapEntryNodeBuilder.create() .withNodeIdentifier( new YangInstanceIdentifier.NodeIdentifierWithPredicates( TOP_LEVEL_LIST_QNAME, TOP_LEVEL_LIST_KEY_QNAME, TOP_LEVEL_LIST_FOO_KEY_VALUE)) @@ -49,7 +49,7 @@ abstract class TestUtils { private static final DataContainerChild CHILD_LIST = ImmutableNodes.mapNodeBuilder(TestModel.TEST_QNAME) .withNodeIdentifier(NodeIdentifier.create(TestModel.TEST_QNAME)) - .withChild(topLevelListNormalized) + .withChild(TOP_LEVEL_LIST_NODE) .build(); static final NormalizedNode TEST_CONTAINER = Builders.containerBuilder() @@ -64,7 +64,7 @@ abstract class TestUtils { static final String EXCEPTION_TEXT = "TestRpcImplementationException"; - static TestRpcImplementation getTestRpcImplementation(){ + static TestRpcImplementation getTestRpcImplementation() { return new TestRpcImplementation(); }