Cleanup whitespace in test.yang 12/97112/1
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 9 Aug 2021 18:10:11 +0000 (20:10 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Mon, 9 Aug 2021 18:10:36 +0000 (20:10 +0200)
We have some ugliness here, clean it up.

Change-Id: I9107551e82de226e327c8ba50f4dcb11b05b3c5b
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
binding/mdsal-binding-dom-adapter/src/test/resources/test.yang

index fec593d110e7d6c2a8ca21abfe3dd49057acd9dd..edb7e9c4e844ec359010a6cdf98d429cbd68f7be 100644 (file)
@@ -1,4 +1,4 @@
-module test{
+module test {
     namespace "urn:test";
     prefix tst;
 
@@ -6,21 +6,21 @@ module test{
 
     typedef id {
         type uint16 {
-          range "1..4094";
+            range "1..4094";
         }
     }
 
-    container cont{
+    container cont {
         leaf vlan-id {
             type union {
-              type id;
-              type enumeration {
-                enum "any" {
-                  value 4096;
+                type id;
+                type enumeration {
+                    enum "any" {
+                        value 4096;
+                    }
                 }
-              }
             }
             mandatory true;
-          }
+        }
     }
-}
\ No newline at end of file
+}