--- a/src/wifi/test/wifi-test.cc Sun Sep 22 21:48:33 2013 -0700
+++ b/src/wifi/test/wifi-test.cc Fri Oct 04 09:40:47 2013 -0400
@@ -39,6 +39,8 @@
#include "ns3/pointer.h"
#include "ns3/rng-seed-manager.h"
#include "ns3/edca-txop-n.h"
+#include "ns3/config.h"
+#include "ns3/boolean.h"
namespace ns3 {
@@ -416,6 +418,10 @@
RngSeedManager::SetSeed (1);
RngSeedManager::SetRun (17);
+ // Disable the initial jitter of AP beacons (test case was written before
+ // beacon jitter was added)
+ Config::SetDefault ("ns3::ApWifiMac::EnableBeaconJitter", BooleanValue (false));
+
Ptr<YansWifiChannel> channel = CreateObject<YansWifiChannel> ();
Ptr<PropagationDelayModel> propDelay = m_propDelay.Create<PropagationDelayModel> ();
Ptr<PropagationLossModel> propLoss = CreateObject<RandomPropagationLossModel> ();