tests: Fixing issue #31 related signed/unsigned comparison warning in one of the tests
diff --git a/test/ndnSIM-serialization.cc b/test/ndnSIM-serialization.cc
index 1f1d2d6..86e9430 100644
--- a/test/ndnSIM-serialization.cc
+++ b/test/ndnSIM-serialization.cc
@@ -87,7 +87,7 @@
   source.SetSignature (10);
   NS_TEST_ASSERT_MSG_EQ (source.GetSignature (), 10, "set/get signature failed");
 
-  NS_TEST_ASSERT_MSG_EQ (source.GetSerializedSize (), size + 4, "Signature size should have increased by 4");
+  NS_TEST_ASSERT_MSG_EQ (source.GetSerializedSize (), static_cast<unsigned int> (size + 4), "Signature size should have increased by 4");
   
   Packet packet (0);
   //serialization