Skip to content

Commit

Permalink
Disposed packets in builder tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Arcidev committed May 16, 2017
1 parent efc9e5e commit f4f7716
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Arci.Networking.Tests/BuilderTests/PacketBuilderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ public void TestPacketBuild()
packet.WriteGuidByteStreamInOrder(123456, 1, 2, 3, 4, 5, 6, 7, 0);

Assert.IsTrue(buildedPacket.Data.SequenceEqual(packet.Data));
buildedPacket.Dispose();
packet.Dispose();
}
}
}

0 comments on commit f4f7716

Please sign in to comment.