Renamed SignedInfo to MetaInfo.
diff --git a/tests/test-publish-async.cpp b/tests/test-publish-async.cpp
index e28871c..49129c8 100644
--- a/tests/test-publish-async.cpp
+++ b/tests/test-publish-async.cpp
@@ -30,7 +30,7 @@
     Data data(interest->getName());
     string content(string("Echo ") + interest->getName().toUri());
     data.setContent((const unsigned char *)&content[0], content.size());
-    data.getSignedInfo().setTimestampMilliseconds(time(NULL) * 1000.0);
+    data.getMetaInfo().setTimestampMilliseconds(time(NULL) * 1000.0);
     KeyChain::defaultSign(data);
     shared_ptr<vector<unsigned char> > encodedData = data.wireEncode();