Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / bugs / bug7440 / foo.yang
1 module foo {
2     namespace foo-ns;
3     prefix foo-prfx;
4
5     import bar {
6         prefix bar;
7         revision-date 2016-12-23;
8     }
9
10     revision 2016-12-23;
11
12     deviation "/bar:test-leaf" {
13         deviate replace {
14             type uint32 {
15                 range "5..50";
16             }
17         }
18     }
19 }