Jonathan Hart
Committed by Gerrit Code Review

Disabling OSPF test with external dependency.

Change-Id: Ia0ac53749ae18dfc011c02e2567a151421808dcc
......@@ -19,6 +19,7 @@ import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.onosproject.ospf.controller.OspfProcess;
......@@ -74,6 +75,9 @@ public class OspfConfigUtilTest {
}
@Test
@Ignore
// Disabling because it seems to have an external dependency that can cause
// it to fail in some environments.
public void testProcesses() throws Exception {
jsonNode.path("areas");
ospfProcessList = OspfConfigUtil.processes(jsonNode);
......