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

pull/2400/head
Adam Cozzette 8 years ago
parent b4dd686ab4
commit 315350b2fa
  1. 8
      js/message_test.js

@ -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());
});
});

Loading…
Cancel
Save