Skip to content

Commit

Permalink
test_schema: fix DATA_PATTERN in list test
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
samuel-gauthier committed Aug 2, 2024
1 parent 487cec5 commit dc5a726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ class ListTest(unittest.TestCase):
PATH = {
"LOG": "/yolo-system:conf/url",
"DATA": "/yolo-system:conf/url",
"DATA_PATTERN": "/yolo-system:conf/url[host='%s'][proto='%s']",
"DATA_PATTERN": "/yolo-system:conf/url[proto='%s'][host='%s']",
}

def setUp(self):
Expand Down

0 comments on commit dc5a726

Please sign in to comment.