change namespace on sdbusplus::match

sdbusplus::server::match::match moved to the sdbusplus::bus namespace.

Change-Id: Ib1599f7efbf63570685a7029811f2eeb69ef6ace
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/manager.hpp b/manager.hpp
index 11750b8..4f146cb 100644
--- a/manager.hpp
+++ b/manager.hpp
@@ -252,7 +252,7 @@
         SigArgs _sigargs;
 
         /** @brief A container of sdbusplus signal matches.  */
-        std::vector<sdbusplus::server::match::match> _matches;
+        std::vector<sdbusplus::bus::match_t> _matches;
 
         /** @brief Persistent sdbusplus DBus bus connection. */
         sdbusplus::bus::bus _bus;
diff --git a/test/test.cpp b/test/test.cpp
index 407a0cc..849b60b 100644
--- a/test/test.cpp
+++ b/test/test.cpp
@@ -139,7 +139,7 @@
         }
 
         sdbusplus::bus::bus _bus;
-        sdbusplus::server::match::match _match;
+        sdbusplus::bus::match_t _match;
         sdbusplus::message::message _next;
 };