fw: rename BestRouteStrategy2 class to BestRouteStrategy
Also rename ad-hoc-forwarding.t.cpp to strategy-ad-hoc-face.t.cpp
and broadcast-medium.t.cpp to strategy-broadcast-medium.t.cpp,
for consistency with the other strategy-*.t.cpp test suites.
Change-Id: Ia8f5257260563732d74c7d58e35481b73a231f06
diff --git a/tests/daemon/fw/strategy-no-route.t.cpp b/tests/daemon/fw/strategy-no-route.t.cpp
index c5a4f89..93a6367 100644
--- a/tests/daemon/fw/strategy-no-route.t.cpp
+++ b/tests/daemon/fw/strategy-no-route.t.cpp
@@ -31,7 +31,7 @@
// Strategies returning Nack-NoRoute when there are no usable FIB nexthops,
// sorted alphabetically.
#include "fw/asf-strategy.hpp"
-#include "fw/best-route-strategy2.hpp"
+#include "fw/best-route-strategy.hpp"
#include "fw/random-strategy.hpp"
#include "tests/test-common.hpp"
@@ -145,9 +145,9 @@
Test<AsfStrategy, NextHopIsDownstream<AsfStrategy>>,
Test<AsfStrategy, NextHopViolatesScope<AsfStrategy>>,
- Test<BestRouteStrategy2, EmptyNextHopList<BestRouteStrategy2>>,
- Test<BestRouteStrategy2, NextHopIsDownstream<BestRouteStrategy2>>,
- Test<BestRouteStrategy2, NextHopViolatesScope<BestRouteStrategy2>>,
+ Test<BestRouteStrategy, EmptyNextHopList<BestRouteStrategy>>,
+ Test<BestRouteStrategy, NextHopIsDownstream<BestRouteStrategy>>,
+ Test<BestRouteStrategy, NextHopViolatesScope<BestRouteStrategy>>,
Test<RandomStrategy, EmptyNextHopList<RandomStrategy>>,
Test<RandomStrategy, NextHopIsDownstream<RandomStrategy>>,