diff --git a/test/per_router/test_juniper_data.py b/test/per_router/test_juniper_data.py
index 6016fe9369836c6f09003d07bfd5c6e75e4ba489..e6343d0042c664b787cffc5e5af1b6f28dcf2495 100644
--- a/test/per_router/test_juniper_data.py
+++ b/test/per_router/test_juniper_data.py
@@ -42,25 +42,25 @@ def netconf_doc(mocker, router, data_config):
     return juniper.load_config(router, data_config['ssh'])
 
 
-# def test_interface_list(netconf_doc):
-#
-#     schema = {
-#         "$schema": "http://json-schema.org/draft-07/schema#",
-#         "type": "array",
-#         "items": {
-#             "type": "object",
-#             "properties": {
-#                 "name": {"type": "string"},
-#                 "description": {"type": "string"}
-#             },
-#             "required": ["name", "description"],
-#             "additionalProperties": False
-#         }
-#     }
-#
-#     interfaces = list(netconf.list_interfaces(netconf_doc))
-#     jsonschema.validate(interfaces, schema)
-#     assert interfaces  # at least shouldn't be empty
+def test_interface_list(netconf_doc):
+
+    schema = {
+        "$schema": "http://json-schema.org/draft-07/schema#",
+        "type": "array",
+        "items": {
+            "type": "object",
+            "properties": {
+                "name": {"type": "string"},
+                "description": {"type": "string"}
+            },
+            "required": ["name", "description"],
+            "additionalProperties": False
+        }
+    }
+
+    interfaces = list(juniper.list_interfaces(netconf_doc))
+    jsonschema.validate(interfaces, schema)
+    assert interfaces  # at least shouldn't be empty
 
 
 def test_bgp_list(netconf_doc):