Skip to content

Commit dc5a726

Browse files
test_schema: fix DATA_PATTERN in list test
Fix the key order. I guess it was changed on libyang side, it does not seem to have an impact. Signed-off-by: Samuel Gauthier <[email protected]>
1 parent 487cec5 commit dc5a726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ class ListTest(unittest.TestCase):
383383
PATH = {
384384
"LOG": "/yolo-system:conf/url",
385385
"DATA": "/yolo-system:conf/url",
386-
"DATA_PATTERN": "/yolo-system:conf/url[host='%s'][proto='%s']",
386+
"DATA_PATTERN": "/yolo-system:conf/url[proto='%s'][host='%s']",
387387
}
388388

389389
def setUp(self):

0 commit comments

Comments
 (0)