Promote SchemaSourceRepresentation
[yangtools.git] / parser / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / parser / repo / YT1428Test.java
index 0379e03b3bea1aa101ed2837aa5f2c5eeb6760a3..afda274f4fd330b26a24b0f4838987699ea42d48 100644 (file)
@@ -11,12 +11,12 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertInstanceOf;
 
 import org.junit.jupiter.api.Test;
+import org.opendaylight.yangtools.yang.model.api.source.SourceIdentifier;
 import org.opendaylight.yangtools.yang.model.repo.api.SchemaResolutionException;
-import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier;
 
 public class YT1428Test extends AbstractSchemaRepositoryTest {
     @Test
-    public void testDeviateSourceReported() {
+    void testDeviateSourceReported() {
         final var ex = assertExecutionException(null, "/yt1428/orig.yang", "/yt1428/deviate.yang");
         assertEquals(new SourceIdentifier("deviate"),
             assertInstanceOf(SchemaResolutionException.class, ex.getCause()).getFailedSource());