face: remove EndpointId from egress APIs
This commit partially reverts 075bb7dac4bf72cbfcff5e3c2da25c6476090787
refs: #4843, #4973
Change-Id: Iab92addff2bd0fa1e24100d43f9f7076ee84a3f8
diff --git a/tests/daemon/face/face.t.cpp b/tests/daemon/face/face.t.cpp
index 346f609..b592a24 100644
--- a/tests/daemon/face/face.t.cpp
+++ b/tests/daemon/face/face.t.cpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
- * Copyright (c) 2014-2019, Regents of the University of California,
+ * Copyright (c) 2014-2020, Regents of the University of California,
* Arizona Board of Regents,
* Colorado State University,
* University Pierre & Marie Curie, Sorbonne University,
@@ -119,16 +119,16 @@
}
for (size_t i = 0; i < nOutInterests; ++i) {
- face1->sendInterest(*makeInterest("/XyUAFYQDmd"), 0);
+ face1->sendInterest(*makeInterest("/XyUAFYQDmd"));
}
for (size_t i = 0; i < nOutData; ++i) {
- face1->sendData(*makeData("/GigPEtPH6"), 0);
+ face1->sendData(*makeData("/GigPEtPH6"));
}
for (size_t i = 0; i < nOutNacks; ++i) {
face1->sendNack(makeNack(*makeInterest("/9xK6FbwIBM", false, nullopt, 365),
- lp::NackReason::CONGESTION), 0);
+ lp::NackReason::CONGESTION));
}
BOOST_CHECK_EQUAL(face1->getCounters().nInInterests, nInInterests);