get rid of publisher and fetcher
modify SyncAppSocket API
modify SyncLogic API
Tweak SeqNo
diff --git a/test/test_data_fetch_and_publish.cc b/test/test_data_fetch_and_publish.cc
index 157ce7f..e75b274 100644
--- a/test/test_data_fetch_and_publish.cc
+++ b/test/test_data_fetch_and_publish.cc
@@ -20,6 +20,7 @@
  *	   Alexander Afanasyev <alexander.afanasyev@ucla.edu>
  */
 
+/*
 #include <boost/test/unit_test.hpp>
 #include <boost/test/output_test_stream.hpp> 
 #include <map>
@@ -71,7 +72,7 @@
   string str[5] = {"panda", "express", "tastes", "so", "good"};
 
   for (int i = 0; i < 5; i++) {
-    foo.set(interest + "/" + "0/" /*session*/ + seq[i], str[i]);
+    foo.set(interest + "/" + "0/" + seq[i], str[i]);
   }
 
   boost::function<void (string, string)> setFunc =
@@ -107,5 +108,6 @@
   BOOST_CHECK_EQUAL(poo.toString(), bar.toString());
 
 }
+*/