diff -r d1201ff72e0c -r 5b5cb5261865 src/lte/test/lte-test-rr-ff-mac-scheduler.cc --- a/src/lte/test/lte-test-rr-ff-mac-scheduler.cc Mon May 21 06:57:19 2012 -0700 +++ b/src/lte/test/lte-test-rr-ff-mac-scheduler.cc Mon May 21 07:25:00 2012 -0700 @@ -316,9 +316,8 @@ uint64_t imsi = ueDevs.Get (i)->GetObject ()->GetImsi (); // get the lcId uint8_t lcId = ueDevs.Get (i)->GetObject ()->GetRrc ()->GetLcIdVector ().at (0); - double txed = rlcStats->GetUlTxData (imsi, lcId); ulDataRxed.push_back (rlcStats->GetUlRxData (imsi, lcId)); - NS_LOG_INFO ("\tUser " << i << " imsi " << imsi << " bytes txed " << (double)ulDataRxed.at (i) << " thr " << (double)ulDataRxed.at (i) / simulationTime << " ref " << m_thrRefUl << " txed " << txed / simulationTime); + NS_LOG_INFO ("\tUser " << i << " imsi " << imsi << " bytes txed " << (double)ulDataRxed.at (i) << " thr " << (double)ulDataRxed.at (i) / simulationTime << " ref " << m_thrRefUl << " txed " << rlcStats->GetUlTxData (imsi, lcId) / simulationTime); NS_TEST_ASSERT_MSG_EQ_TOL ((double)ulDataRxed.at (i) / simulationTime, m_thrRefUl, m_thrRefUl * tolerance, " Unfair Throughput!"); }