Fix point-to-point unit tests

This commit is contained in:
Tom Henderson
2008-05-11 21:43:55 -07:00
parent 515183caae
commit 32bc3d3664

View File

@@ -27,7 +27,7 @@ void
PointToPointTest::SendOnePacket (Ptr<PointToPointNetDevice> device)
{
Ptr<Packet> p = Create<Packet> ();
device->Send (p, device->GetBroadcast (), 1);
device->Send (p, device->GetBroadcast (), 0x800);
}