From 351db7989bdb5fba3695383d408e7af391e29d9d Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Wed, 8 Aug 2018 11:10:46 +0200 Subject: [PATCH] Activate BUG-6135 test 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 --- .../mdsal/binding/generator/impl/Bug6135Test.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/binding/mdsal-binding-generator-impl/src/test/java/org/opendaylight/mdsal/binding/generator/impl/Bug6135Test.java b/binding/mdsal-binding-generator-impl/src/test/java/org/opendaylight/mdsal/binding/generator/impl/Bug6135Test.java index 4ae47cd705..db15648f92 100644 --- a/binding/mdsal-binding-generator-impl/src/test/java/org/opendaylight/mdsal/binding/generator/impl/Bug6135Test.java +++ b/binding/mdsal-binding-generator-impl/src/test/java/org/opendaylight/mdsal/binding/generator/impl/Bug6135Test.java @@ -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); -- 2.36.6