Bug 2326 - NormalizeNode equals fails when NormalizeNodes being
[yangtools.git] / yang / yang-data-impl / src / test / java / org / opendaylight / yangtools / yang / data / impl / NodeModificationBuilderImplTest.java
index 79be9fa96ec63ebc2a4d070dca7d54edc3f45bda..70c2c81ab15fc63ca1771f693b5deb6f2758a68b 100644 (file)
@@ -7,11 +7,11 @@
  */
 package org.opendaylight.yangtools.yang.data.impl;
 
+import static org.junit.Assert.assertSame;
+
 import java.net.URI;
 import java.util.Date;
 
-import junit.framework.Assert;
-
 import org.junit.Before;
 import org.junit.Test;
 import org.opendaylight.yangtools.yang.common.QName;
@@ -29,6 +29,7 @@ import org.w3c.dom.Document;
  * @author michal.rehak
  *
  */
+@Deprecated
 public class NodeModificationBuilderImplTest {
 
     private static final Logger LOG = LoggerFactory.getLogger(NodeModificationBuilderImplTest.class);
@@ -80,7 +81,7 @@ public class NodeModificationBuilderImplTest {
         Node<?> mutableEquivalent = nodeModificationBuilder.getMutableEquivalent(topologies);
         CompositeNode topologiesMutable = rootMutable.getCompositesByName("topologies").iterator().next();
 
-        Assert.assertSame(topologiesMutable, mutableEquivalent);
+        assertSame(topologiesMutable, mutableEquivalent);
     }
 
     /**