route: remove redundant function
refs: #4811
Change-Id: I31b1031f57a344e7c3176b917ffbad2f6b2bd821
diff --git a/tests/test-hyperbolic-calculator.cpp b/tests/test-hyperbolic-calculator.cpp
index 4b8cce7..c4f39e2 100644
--- a/tests/test-hyperbolic-calculator.cpp
+++ b/tests/test-hyperbolic-calculator.cpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
- * Copyright (c) 2014-2018, The University of Memphis,
+ * Copyright (c) 2014-2019, The University of Memphis,
* Regents of the University of California,
* Arizona Board of Regents.
*
@@ -106,7 +106,7 @@
void runTest(const double& expectedCost)
{
HyperbolicRoutingCalculator calculator(map.getMapSize(), false, ROUTER_A_NAME);
- calculator.calculatePaths(map, routingTable, lsdb, adjacencies);
+ calculator.calculatePath(map, routingTable, lsdb, adjacencies);
RoutingTableEntry* entryB = routingTable.findRoutingTableEntry(ROUTER_B_NAME);