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