Skip to content

Commit 41fc16c

Browse files
committed
Update PacketTest
1 parent 37dcf9e commit 41fc16c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Source/Tests/PacketTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ private static IEnumerable<IPacket> RoundtripPackets()
225225

226226
// real code is using GZip compressed content for the traces, but we are only testing on the wire representation
227227
// and are treating the bytes as opaque, so it doesn't matter
228-
yield return new ClientTracesPacket { playerId = 123, rawTraces = "trace 1\ntrace 2"u8.ToArray()};
228+
yield return new ClientTracesPacket { playerId = 123, rawTraces = "trace 1\ntrace 2"u8.ToArray(), rawJittedMethods = "jitted methods"u8.ToArray() };
229229
yield return ServerTracesPacket.Request(9001, 1000, 5);
230230
yield return ServerTracesPacket.Transfer("trace 1\ntrace 2"u8.ToArray(), "jitted methods"u8.ToArray());
231231

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7B-00-00-00-74-72-61-63-65-20-31-0A-74-72-61-63-65-20-32
1+
7B-00-00-00-0F-00-00-00-74-72-61-63-65-20-31-0A-74-72-61-63-65-20-32-0E-00-00-00-6A-69-74-74-65-64-20-6D-65-74-68-6F-64-73 (41 bytes)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
00-29-23-00-00-E8-03-00-00-05-00-00-00
2-
01-74-72-61-63-65-20-31-0A-74-72-61-63-65-20-32
2+
01-0F-00-00-00-74-72-61-63-65-20-31-0A-74-72-61-63-65-20-32-0E-00-00-00-6A-69-74-74-65-64-20-6D-65-74-68-6F-64-73 (38 bytes)

0 commit comments

Comments
 (0)