From 1f237abbf15181fe7aa260fdd64517f43ba5ee9f Mon Sep 17 00:00:00 2001 From: Eric Newberry Date: Thu, 28 May 2020 14:10:07 -0700 Subject: [PATCH] tests: avoid use of deprecated default SigningInfo refs #4804 Change-Id: I32db316bbaca89fb92ec4b70568d0ff7fcd3423b --- tests/test-common.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-common.hpp b/tests/test-common.hpp index c5c12bc2..3139ef9d 100644 --- a/tests/test-common.hpp +++ b/tests/test-common.hpp @@ -113,7 +113,7 @@ makePrefixAnn(const Name& announcedName, time::milliseconds expiration, */ ndn::PrefixAnnouncement signPrefixAnn(ndn::PrefixAnnouncement&& pa, ndn::KeyChain& keyChain, - const ndn::security::SigningInfo& si = ndn::KeyChain::getDefaultSigningInfo(), + const ndn::security::SigningInfo& si = ndn::security::SigningInfo(), optional version = nullopt); } // namespace tests