commit | f90a0b5d9ac8d5cc58d76a4528fb5c9d4eb550e9 | [log] [tgz] |
---|---|---|
author | Václav Kubernát <kubernat@cesnet.cz> | Fri Nov 06 05:53:03 2020 +0100 |
committer | Jan Kundrát <jan.kundrat@cesnet.cz> | Tue Nov 10 18:56:49 2020 +0100 |
tree | bbb835baa31d5122f3237230732afd6865666293 | |
parent | 61d92d76ed88990372ae0fd5d876277f9b197805 [diff] [blame] |
Fix sysrepo bug with key-less lists More info on Github. Bug: https://github.com/sysrepo/sysrepo/issues/2210 Change-Id: I87601a85dbd77d70634ade2069642eb9ceb075b1
diff --git a/tests/example-schema.yang b/tests/example-schema.yang index 372b83d..6c546d3 100644 --- a/tests/example-schema.yang +++ b/tests/example-schema.yang
@@ -303,4 +303,17 @@ bit parity; } } + + container users { + config false; + list userList { + leaf name { + type string; + } + leaf otherfield { + type string; + } + } + } + }