Activate BUG-6135 test 89/75089/2
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 8 Aug 2018 09:10:46 +0000 (11:10 +0200)
committerRobert Varga <nite@hq.sk>
Fri, 31 Aug 2018 07:59:44 +0000 (07:59 +0000)
The underlying bug was fixed long time ago, but the corresponding
test was not activated. Fix that.

Change-Id: I97a31722a4cf5145f6f3c6a1ef3eba5f1f213d25
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
(cherry picked from commit 351db7989bdb5fba3695383d408e7af391e29d9d)

binding/mdsal-binding-generator-impl/src/test/java/org/opendaylight/mdsal/binding/generator/impl/Bug6135Test.java

index 4ae47cd7054a0eb88ded98975fa1518d296f88cf..db15648f926a95add0d93ea7c53345ee33fe82c5 100644 (file)
@@ -11,23 +11,18 @@ import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertNotNull;
 
-import java.io.FileNotFoundException;
-import java.net.URISyntaxException;
 import java.util.List;
-import org.junit.Ignore;
 import org.junit.Test;
 import org.opendaylight.mdsal.binding.model.api.Enumeration;
 import org.opendaylight.mdsal.binding.model.api.GeneratedType;
 import org.opendaylight.mdsal.binding.model.api.Type;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
-import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
 import org.opendaylight.yangtools.yang.test.util.YangParserTestUtils;
 
 public class Bug6135Test {
 
-    @Ignore
     @Test
-    public void bug6135Test() throws FileNotFoundException, ReactorException, URISyntaxException {
+    public void bug6135Test() {
         final SchemaContext context = YangParserTestUtils.parseYangResource("/bug-6135/foo.yang");
         assertNotNull(context);