From 5cc09fc04722d1d2ba0b08a76501049e68789de8 Mon Sep 17 00:00:00 2001 From: Robert Latta <robert.latta@geant.org> Date: Fri, 19 Mar 2021 14:24:08 +0000 Subject: [PATCH] flake8 --- test/test_classifier_routes.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/test_classifier_routes.py b/test/test_classifier_routes.py index dc205b91..ba47b98d 100644 --- a/test/test_classifier_routes.py +++ b/test/test_classifier_routes.py @@ -165,7 +165,6 @@ def test_infinera_fiberlink_not_found(client): assert rv.status_code == 404 -# Temporarily removed for merge def test_infinera_fiberlink(client): rv = client.get( @@ -175,8 +174,7 @@ def test_infinera_fiberlink(client): assert rv.status_code == 200 assert rv.is_json response_data = json.loads(rv.data.decode('utf-8')) - jsonschema.validate( - response_data, INFINERA_FIBERLINK_INFO_RESPONSE_SCHEMA) + jsonschema.validate(response_data, INFINERA_FIBERLINK_INFO_RESPONSE_SCHEMA) def test_infinera_lambda(client): -- GitLab