diff --git a/test/per_router/test_data_routes.py b/test/per_router/test_data_routes.py index 2294c4b21aab91f6d70453abf235466df4af07e8..8975ce6d3156c4357bcbd926afc664ce238d1076 100644 --- a/test/per_router/test_data_routes.py +++ b/test/per_router/test_data_routes.py @@ -48,19 +48,19 @@ def test_router_interfaces(router, client_with_mocked_data): def test_snmp_ids(router, client_with_mocked_data): - snmp_id_list_schema = { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "array", - "items": { - "type": "object", - "properties": { - "index": {"type": "string"}, - "name": {"type": "string"} - }, - "required": ["index", "name"], - "additionalProperties": False - } - } + # snmp_id_list_schema = { + # "$schema": "http://json-schema.org/draft-07/schema#", + # "type": "array", + # "items": { + # "type": "object", + # "properties": { + # "index": {"type": "string"}, + # "name": {"type": "string"} + # }, + # "required": ["index", "name"], + # "additionalProperties": False + # } + # } rv = client_with_mocked_data.post( "/testing/snmp/" + router, diff --git a/test/per_router/test_poller_routes.py b/test/per_router/test_poller_routes.py index 26774dc3a865725134780bddd59c379dc659219b..98c54c8bcfbb792b8fb50567449d98c3bfd1739a 100644 --- a/test/per_router/test_poller_routes.py +++ b/test/per_router/test_poller_routes.py @@ -1,10 +1,10 @@ -import json -import jsonschema - -DEFAULT_REQUEST_HEADERS = { - "Content-type": "application/json", - "Accept": ["application/json"] -} +# import json +# import jsonschema +# +# DEFAULT_REQUEST_HEADERS = { +# "Content-type": "application/json", +# "Accept": ["application/json"] +# } def test_router_interfaces(router, client_with_mocked_data):