Commit 2ab6cb45 authored by Yilun Chong's avatar Yilun Chong

fix

parent ed1cd2c5
...@@ -681,10 +681,12 @@ describe('binaryReaderTest', function() { ...@@ -681,10 +681,12 @@ describe('binaryReaderTest', function() {
writer.writeGroup(5, dummyMessage, function() { writer.writeGroup(5, dummyMessage, function() {
writer.writeInt64(42, 42); writer.writeInt64(42, 42);
writer.writeInt64(44, 44); writer.writeInt64(44, 44);
writer.writeString(43, 'The quick brown fox jumps over the lazy dog'); writer.writeBytes(43, [255, 255, 255, 255, 255, 255, 255, 255, 255, 255]);
writer.writeGroup(6, dummyMessage, function() { writer.writeGroup(6, dummyMessage, function() {
writer.writeInt64(84, 42); writer.writeInt64(84, 42);
writer.writeString(85, 'The quick brown fox jumps over the lazy dog'); writer.writeInt64(84, 44);
writer.writeBytes(
43, [255, 255, 255, 255, 255, 255, 255, 255, 255, 255]);
}); });
}); });
......
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