From f018be054344202e60c5d6572bc2b9f3ad96c954 Mon Sep 17 00:00:00 2001
From: Robert Latta <robert.latta@geant.org>
Date: Thu, 20 Jun 2019 12:51:02 +0000
Subject: [PATCH] updated schema to cope with 'bundle' field

---
 test/per_router/test_data_routes.py  | 4 ++++
 test/per_router/test_juniper_data.py | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/test/per_router/test_data_routes.py b/test/per_router/test_data_routes.py
index aa47ad7d..ec4762cc 100644
--- a/test/per_router/test_data_routes.py
+++ b/test/per_router/test_data_routes.py
@@ -18,6 +18,10 @@ def test_router_interfaces(router, client_with_mocked_data):
             "properties": {
                 "name": {"type": "string"},
                 "description": {"type": "string"},
+                "bundle": {
+                    "type": "array",
+                    "items": {"type": "string"}
+                },
                 "ipv4": {
                     "type": "array",
                     "items": {"type": "string"}
diff --git a/test/per_router/test_juniper_data.py b/test/per_router/test_juniper_data.py
index 72147764..3c99a086 100644
--- a/test/per_router/test_juniper_data.py
+++ b/test/per_router/test_juniper_data.py
@@ -52,6 +52,10 @@ def test_interface_list(netconf_doc):
             "properties": {
                 "name": {"type": "string"},
                 "description": {"type": "string"},
+                "bundle": {
+                    "type": "array",
+                    "items": {"type": "string"}
+                },
                 "ipv4": {
                     "type": "array",
                     "items": {"type": "string"}
-- 
GitLab