diff --git a/src/lte/test/lte-test-cell-selection.cc b/src/lte/test/lte-test-cell-selection.cc index 368a44b57..f20d66219 100644 --- a/src/lte/test/lte-test-cell-selection.cc +++ b/src/lte/test/lte-test-cell-selection.cc @@ -77,8 +77,8 @@ LteCellSelectionTestSuite::LteCellSelectionTestSuite () MilliSeconds (283), 4, 0)); AddTestCase (new LteCellSelectionTestCase ("EPC, real RRC, RngNum=1", - true, false, 60.0, 20.0, w, 1), - // isd txpow rngrun + true, false, 60.0, w, 1), + // isd rngrun TestCase::QUICK); // IDEAL RRC PROTOCOL @@ -100,8 +100,8 @@ LteCellSelectionTestSuite::LteCellSelectionTestSuite () MilliSeconds (266), 4, 0)); AddTestCase (new LteCellSelectionTestCase ("EPC, ideal RRC, RngNum=1", - true, true, 60.0, 20.0, w, 1), - // isd txpow rngrun + true, true, 60.0, w, 1), + // isd rngrun TestCase::QUICK); } // end of LteCellSelectionTestSuite::LteCellSelectionTestSuite () @@ -130,13 +130,12 @@ LteCellSelectionTestCase::UeSetup_t::UeSetup_t ( LteCellSelectionTestCase::LteCellSelectionTestCase ( std::string name, bool isEpcMode, bool isIdealRrc, - double interSiteDistance, double enbTxPower, + double interSiteDistance, std::vector ueSetupList, int64_t rngRun) : TestCase (name), m_isEpcMode (isEpcMode), m_isIdealRrc (isIdealRrc), m_interSiteDistance (interSiteDistance), - m_enbTxPower (enbTxPower), m_ueSetupList (ueSetupList), m_rngRun (rngRun) { diff --git a/src/lte/test/lte-test-cell-selection.h b/src/lte/test/lte-test-cell-selection.h index f2ee668ae..a3d36e11f 100644 --- a/src/lte/test/lte-test-cell-selection.h +++ b/src/lte/test/lte-test-cell-selection.h @@ -82,7 +82,7 @@ public: * \param rngRun the number of run to be used by the random number generator */ LteCellSelectionTestCase (std::string name, bool isEpcMode, bool isIdealRrc, - double interSiteDistance, double enbTxPower, + double interSiteDistance, std::vector ueSetupList, int64_t rngRun); @@ -115,7 +115,6 @@ private: bool m_isEpcMode; bool m_isIdealRrc; double m_interSiteDistance; - double m_enbTxPower; std::vector m_ueSetupList; int64_t m_rngRun;