Skip to content

Commit

Permalink
tests: replace Boost.MPL with Mp11
Browse files Browse the repository at this point in the history
Change-Id: I9147793dc78bb73394d51e4c4c904afb49e65d0d
  • Loading branch information
Pesa committed Sep 17, 2023
1 parent 3bf126f commit 9c369b3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/unit/decryptor.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@
#include "tests/io-key-chain-fixture.hpp"
#include "tests/unit/static-data.hpp"

#include <boost/mpl/vector.hpp>
#include <ndn-cxx/security/validator-null.hpp>
#include <ndn-cxx/util/dummy-client-face.hpp>

#include <boost/mp11/list.hpp>

namespace ndn::nac::tests {

class DecryptorStaticDataEnvironment : public IoKeyChainFixture
Expand Down Expand Up @@ -101,7 +102,7 @@ struct Invalid
bool expectToSucceed = false;
};

using Identities = boost::mpl::vector<Valid, Invalid>;
using Identities = boost::mp11::mp_list<Valid, Invalid>;

BOOST_FIXTURE_TEST_CASE_TEMPLATE(DecryptSuccess, T, Identities, DecryptorFixture<T>)
{
Expand Down

0 comments on commit 9c369b3

Please sign in to comment.