Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / deviation-resolution-test / deviation-replace / foo-invalid-3.yang
1 module foo {
2     namespace foo;
3     prefix foo;
4
5     import bar {
6         prefix bar;
7         revision-date 2017-01-20;
8     }
9
10     revision 2017-01-20;
11
12     deviation "/bar:my-leaf" {
13         deviate replace {
14             must "a != b";
15         }
16     }
17 }