Commit 315350b2 authored by Adam Cozzette's avatar Adam Cozzette

Updated message_test.js so that it does not depend on fromObject

parent b4dd686a
......@@ -1049,13 +1049,7 @@ describe('Message test suite', function() {
var nested = new proto.jspb.test.Deeply.Nested.Message();
nested.setCount(5);
msg.setDeeplyNestedMessage(nested);
// After a serialization-deserialization round trip we should get back the
// same data we started with.
var serialized = msg.toObject();
var deserialized =
proto.jspb.test.ForeignNestedFieldMessage.fromObject(serialized);
assertEquals(5, deserialized.getDeeplyNestedMessage().getCount());
assertEquals(5, msg.getDeeplyNestedMessage().getCount());
});
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment