Update yang-parser-api
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / YT826Test.java
index b574ab0f8e619fb999bb4647d882cd012d993006..ff635c2bafda5193d46052328b0726d2057cb0b0 100644 (file)
@@ -7,23 +7,12 @@
  */
 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020;
 
-import static org.junit.Assert.assertNotNull;
-
-import java.io.IOException;
-import java.net.URISyntaxException;
 import org.junit.Test;
-import org.opendaylight.yangtools.yang.model.api.SchemaContext;
-import org.opendaylight.yangtools.yang.model.parser.api.YangSyntaxErrorException;
-import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
 import org.opendaylight.yangtools.yang.stmt.StmtTestUtils;
 
 public class YT826Test {
-
     @Test
-    public void testWhenExpressionWhitespace() throws ReactorException, URISyntaxException, IOException,
-            YangSyntaxErrorException {
-        final SchemaContext schemaContext = StmtTestUtils.parseYangSource("/bugs/yangtools826/example.yang");
-        assertNotNull(schemaContext);
+    public void testWhenExpressionWhitespace() throws Exception {
+        StmtTestUtils.parseYangSource("/bugs/yangtools826/example.yang");
     }
-
 }