Skip to content
Snippets Groups Projects
Commit 5cc09fc0 authored by Robert Latta's avatar Robert Latta
Browse files

flake8

parent de7d6503
No related branches found
No related tags found
No related merge requests found
...@@ -165,7 +165,6 @@ def test_infinera_fiberlink_not_found(client): ...@@ -165,7 +165,6 @@ def test_infinera_fiberlink_not_found(client):
assert rv.status_code == 404 assert rv.status_code == 404
# Temporarily removed for merge
def test_infinera_fiberlink(client): def test_infinera_fiberlink(client):
rv = client.get( rv = client.get(
...@@ -175,8 +174,7 @@ def test_infinera_fiberlink(client): ...@@ -175,8 +174,7 @@ def test_infinera_fiberlink(client):
assert rv.status_code == 200 assert rv.status_code == 200
assert rv.is_json assert rv.is_json
response_data = json.loads(rv.data.decode('utf-8')) response_data = json.loads(rv.data.decode('utf-8'))
jsonschema.validate( jsonschema.validate(response_data, INFINERA_FIBERLINK_INFO_RESPONSE_SCHEMA)
response_data, INFINERA_FIBERLINK_INFO_RESPONSE_SCHEMA)
def test_infinera_lambda(client): def test_infinera_lambda(client):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment