lsa: define AdjLsa operator==
Delete noLink field that is not used anywhere.
refs #4094
Change-Id: I646eb2dc828935c1f75ec2c036ba4fd60e907706
diff --git a/tests/test-nlsr.cpp b/tests/test-nlsr.cpp
index ed8ce66..adb321b 100644
--- a/tests/test-nlsr.cpp
+++ b/tests/test-nlsr.cpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
- * Copyright (c) 2014-2023, The University of Memphis,
+ * Copyright (c) 2014-2024, The University of Memphis,
* Regents of the University of California,
* Arizona Board of Regents.
*
@@ -344,7 +344,7 @@
10, Adjacent::STATUS_ACTIVE, 0, 256);
AdjLsa ownAdjLsa(conf.getRouterPrefix(), 10,
- ndn::time::system_clock::now(), 1, neighbors);
+ ndn::time::system_clock::now(), neighbors);
lsdb.installLsa(std::make_shared<AdjLsa>(ownAdjLsa));
// Router that will fail
@@ -353,7 +353,7 @@
AdjLsa failAdjLsa("/ndn/neighborA", 10,
ndn::time::system_clock::now() + ndn::time::seconds(3600),
- 1, failAdjacencies);
+ failAdjacencies);
lsdb.installLsa(std::make_shared<AdjLsa>(failAdjLsa));
@@ -363,7 +363,7 @@
AdjLsa otherAdjLsa("/ndn/neighborB", 10,
ndn::time::system_clock::now() + ndn::time::seconds(3600),
- 1, otherAdjacencies);
+ otherAdjacencies);
lsdb.installLsa(std::make_shared<AdjLsa>(otherAdjLsa));