diff options
Diffstat (limited to 'host/tests')
-rw-r--r-- | host/tests/rfnoc_block_tests/x4xx_zbx_mpm_mock.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/tests/rfnoc_block_tests/x4xx_zbx_mpm_mock.hpp b/host/tests/rfnoc_block_tests/x4xx_zbx_mpm_mock.hpp index ad47089a5..956e713db 100644 --- a/host/tests/rfnoc_block_tests/x4xx_zbx_mpm_mock.hpp +++ b/host/tests/rfnoc_block_tests/x4xx_zbx_mpm_mock.hpp @@ -137,7 +137,7 @@ public: double rfdc_set_nco_freq(const std::string& trx, const size_t /*db_id*/, const size_t chan, - const double freq) + const double freq) override { BOOST_REQUIRE(trx == "rx" || trx == "tx"); BOOST_REQUIRE(chan < uhd::usrp::zbx::ZBX_NUM_CHANS); @@ -146,7 +146,7 @@ public: } double rfdc_get_nco_freq( - const std::string& trx, const size_t /*db_id*/, const size_t chan) + const std::string& trx, const size_t /*db_id*/, const size_t chan) override { BOOST_REQUIRE(trx == "rx" || trx == "tx"); BOOST_REQUIRE(chan < uhd::usrp::zbx::ZBX_NUM_CHANS); |