Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / bugs / qnameDuplicity / augment / two-cases.yang
1 module two-cases {
2
3     namespace "urn:test:two:cases";
4     prefix "two";
5
6     organization "OPEN DAYLIGHT";
7     contact "http://www.opendaylight.org/";
8
9     revision 2013-07-09 {
10
11     }
12
13     container cont {
14         choice choice {
15             default second;
16             case first {
17                 leaf leaf-case1 {
18                     type int32;
19                 }
20             }
21         }
22     }
23
24     augment "/cont/choice/" {
25         case forth {
26             leaf leaf-case1 {
27                 type string;
28             }
29         }
30     }
31 }