Browse Source

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

Adam Cozzette 9 years ago
parent
commit
315350b2fa
1 changed files with 1 additions and 7 deletions
  1. 1 7
      js/message_test.js

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