lsdb: Fetch LSA from the face the notification about LSAs came from
Change-Id: Iadb7a22bcc8b2d7801787e5d88b37eec4eafc974
diff --git a/tests/test-lsdb.cpp b/tests/test-lsdb.cpp
index f1b46a6..ec2668b 100644
--- a/tests/test-lsdb.cpp
+++ b/tests/test-lsdb.cpp
@@ -147,7 +147,7 @@
ndn::Name oldInterestName = interestName;
oldInterestName.appendNumber(oldSeqNo);
- lsdb.expressInterest(oldInterestName, 0);
+ lsdb.expressInterest(oldInterestName, 0, 0);
advanceClocks(10_ms);
std::vector<ndn::Interest>& interests = face.sentInterests;
@@ -185,7 +185,7 @@
ndn::Name newInterestName = interestName;
newInterestName.appendNumber(newSeqNo);
- lsdb.expressInterest(newInterestName, 0);
+ lsdb.expressInterest(newInterestName, 0, 0);
advanceClocks(10_ms);
BOOST_REQUIRE(interests.size() > 0);
@@ -245,7 +245,7 @@
ndn::Name interestName("/localhop/ndn/nlsr/LSA/site/%C1.Router/this-router/NAME");
interestName.appendNumber(seqNo);
- lsdb2.expressInterest(interestName, 0/*= timeout count*/);
+ lsdb2.expressInterest(interestName, 0/*= timeout count*/, 0);
advanceClocks(ndn::time::milliseconds(200), 20);