Fix augment argument 84/96384/1
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 27 May 2021 22:48:41 +0000 (00:48 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 27 May 2021 22:51:07 +0000 (00:51 +0200)
As per RFC6020 section 7.15, augment statement used under a module
(or submodule} statement MUST use absolute form must be used.
Fix our test model.

Change-Id: I0b6a566f448464643c0796714de268464412bff6
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
restconf/restconf-nb-bierman02/src/test/resources/notifications/notifi-module.yang

index 70d45f1631b61c2b4db10dee71c50700ff06fa3f..e9c0e4b6675eddb4fc3e1b1afbcd2b30e19b927b 100644 (file)
@@ -41,9 +41,9 @@ module notifi-module {
     notification notifi-augm {
     }
 
-    augment notifi-augm {
+    augment /notifi-augm {
         leaf lf-augm {
             type string;
         }
     }
-}
\ No newline at end of file
+}