sdbusplus: use shorter type aliases

The sdbusplus headers provide shortened aliases for many types.
Switch to using them to provide better code clarity and shorter
lines.  Possible replacements are for:
  * bus_t
  * exception_t
  * manager_t
  * match_t
  * message_t
  * object_t
  * slot_t

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ib15ce49ac136da396084ab09972dd132f02beeea
diff --git a/test/test_snmp_client.cpp b/test/test_snmp_client.cpp
index 698c491..df4ac3f 100644
--- a/test/test_snmp_client.cpp
+++ b/test/test_snmp_client.cpp
@@ -20,7 +20,7 @@
 class TestSNMPClient : public testing::Test
 {
   public:
-    sdbusplus::bus::bus bus;
+    sdbusplus::bus_t bus;
     ConfManager manager;
     TestSNMPClient() :
         bus(sdbusplus::bus::new_default()), manager(bus, mgrObjPath)
diff --git a/test/test_snmp_conf_manager.cpp b/test/test_snmp_conf_manager.cpp
index 13739b5..c5d3277 100644
--- a/test/test_snmp_conf_manager.cpp
+++ b/test/test_snmp_conf_manager.cpp
@@ -19,7 +19,7 @@
 class TestSNMPConfManager : public testing::Test
 {
   public:
-    sdbusplus::bus::bus bus;
+    sdbusplus::bus_t bus;
     ConfManager manager;
     // confDir could have been created locally in the
     // TestSNMPConfManager but somehow that is leading
diff --git a/test/test_snmp_serialize.cpp b/test/test_snmp_serialize.cpp
index 627045b..d291aae 100644
--- a/test/test_snmp_serialize.cpp
+++ b/test/test_snmp_serialize.cpp
@@ -22,7 +22,7 @@
 class TestSerialize : public testing::Test
 {
   public:
-    sdbusplus::bus::bus bus;
+    sdbusplus::bus_t bus;
     ConfManager manager;
     TestSerialize() :
         bus(sdbusplus::bus::new_default()),