tests: move to namespace psync::tests
Change-Id: I462563e8f3d60fbf2a124bad4e412665adeb8186
diff --git a/tests/test-full-producer.cpp b/tests/test-full-producer.cpp
index a03d799..c833181 100644
--- a/tests/test-full-producer.cpp
+++ b/tests/test-full-producer.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
*
* This file is part of PSync.
* See AUTHORS.md for complete list of PSync authors and contributors.
@@ -26,12 +26,12 @@
#include <ndn-cxx/util/dummy-client-face.hpp>
-namespace psync {
+namespace psync::tests {
using ndn::Interest;
using ndn::Name;
-class FullProducerFixture : public tests::IoFixture, public tests::KeyChainFixture
+class FullProducerFixture : public IoFixture, public KeyChainFixture
{
protected:
ndn::DummyClientFace m_face{m_io, m_keyChain, {true, true}};
@@ -89,4 +89,4 @@
BOOST_AUTO_TEST_SUITE_END()
-} // namespace psync
+} // namespace psync::tests