Rename StatementSource to StatementOrigin
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / java / org / opendaylight / yangtools / yang / stmt / YT956Test.java
index 2a1e218e3fb44802832c0bd6c2779f78c8028351..7f2693c838f216738150948159909778c22d5425 100644 (file)
@@ -7,9 +7,9 @@
  */
 package org.opendaylight.yangtools.yang.stmt;
 
+import static org.hamcrest.MatcherAssert.assertThat;
 import static org.hamcrest.Matchers.isA;
 import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertThat;
 
 import org.junit.Test;
 import org.opendaylight.yangtools.yang.common.QName;
@@ -33,6 +33,6 @@ public class YT956Test {
         final ContainerSchemaNode firstAugment = (ContainerSchemaNode) first;
 
         // Augmentation needs to be added
-        assertEquals(1, firstAugment.getChildNodes().size());
+        assertEquals(3, firstAugment.getChildNodes().size());
     }
 }