BUG-2219: reenable test 79/26979/3
authorRobert Varga <rovarga@cisco.com>
Mon, 14 Sep 2015 21:05:43 +0000 (23:05 +0200)
committerGerrit Code Review <gerrit@opendaylight.org>
Wed, 16 Sep 2015 18:26:25 +0000 (18:26 +0000)
A test case was left disabled for when the bug is fixed, but was not
re-enabled afterwards.

Change-Id: I4d52d578d2eea830a03fd2ae6e9303f46cfac521
Signed-off-by: Robert Varga <rovarga@cisco.com>
yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/parser/builder/impl/CopyUtilsTest.java

index b62accaeb633bfd2e8f8f13d40df3e4e315a8280..31c9341712e0d176e86ae322e81db77cd49984e4 100644 (file)
@@ -11,7 +11,6 @@ import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertNotEquals;
 import static org.junit.Assert.assertNotNull;
 import java.util.List;
-import org.junit.Ignore;
 import org.junit.Test;
 import org.opendaylight.yangtools.yang.common.QName;
 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
@@ -319,7 +318,6 @@ public class CopyUtilsTest extends AbstractBuilderTest {
         assertFalse(copy.getUnknownNodes().isEmpty());
     }
 
-    @Ignore
     @Test
     public void testCopyIdentityrefTypeBuilder() {
         final String typedefLocalName = "identity-ref-test-type";
@@ -328,7 +326,6 @@ public class CopyUtilsTest extends AbstractBuilderTest {
         final IdentityrefTypeBuilder typeBuilder = new IdentityrefTypeBuilder(module.getModuleName(), 12,
             "base:parent-identity", typedefPath);
 
-        //FIXME remove Ignore annotation once fix for bug 2219 will be resolved and merged
         final TypeDefinitionBuilder copy = CopyUtils.copy(typeBuilder, module, true);
         assertNotNull(copy);