diff --git a/test/test_classifier_routes.py b/test/test_classifier_routes.py
index dc205b916ac9fe6a758c793f5459096cac1e157f..ba47b98d282a70bd79cf572a5c1f55d56db799e9 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):