Correcting SyncLogic test to make it compile
diff --git a/test/test_sync_logic.cc b/test/test_sync_logic.cc
index 27cd9c6..f1ee94d 100644
--- a/test/test_sync_logic.cc
+++ b/test/test_sync_logic.cc
@@ -59,12 +59,9 @@
 {
   Handler h1 ("1"), h2 ("2");
 
-  SyncLogic l1 ("/bcast", bind (&Handler::onUpdate, &h1, _1, _2, _3), bind (&Handler::onRemove, &h1, _1), make_shared<CcnxWrapper> ());
-  SyncLogic L2 ("/bcast", bind (&Handler::onUpdate, &h2, _1, _2, _3), bind (&Handler::onRemove, &h2, _1), make_shared<CcnxWrapper> ());
+  SyncLogic l1 ("/bcast", bind (&Handler::onUpdate, &h1, _1, _2, _3), bind (&Handler::onRemove, &h1, _1));
+  SyncLogic L2 ("/bcast", bind (&Handler::onUpdate, &h2, _1, _2, _3), bind (&Handler::onRemove, &h2, _1));
 
   sleep (10);
   // l1.  
 }
-
-
-