diff options
author | Philip Balister <philip@opensdr.com> | 2010-04-13 16:38:42 +0000 |
---|---|---|
committer | Philip Balister <philip@opensdr.com> | 2010-04-13 16:38:42 +0000 |
commit | f1838b9284a124fcfb5996eaf1647a69b4473278 (patch) | |
tree | 15e69f3641f8919fae201ec002a2edfc61f6cb42 /host/test/addr_test.cpp | |
parent | b59c54e334dfc1c6ab7da81c62038444f93efe61 (diff) | |
parent | 41a515f3f97ae77b7c1b4371fdef7c085dce8c1c (diff) | |
download | uhd-f1838b9284a124fcfb5996eaf1647a69b4473278.tar.gz uhd-f1838b9284a124fcfb5996eaf1647a69b4473278.tar.bz2 uhd-f1838b9284a124fcfb5996eaf1647a69b4473278.zip |
Merge branch 'usrp_e' of git@ettus.sourcerepo.com:ettus/uhd into usrp_e
Diffstat (limited to 'host/test/addr_test.cpp')
-rw-r--r-- | host/test/addr_test.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/host/test/addr_test.cpp b/host/test/addr_test.cpp index a5d2d4c06..2ec6de14b 100644 --- a/host/test/addr_test.cpp +++ b/host/test/addr_test.cpp @@ -50,16 +50,16 @@ BOOST_AUTO_TEST_CASE(test_device_addr){ BOOST_CHECK_EQUAL(dev_addr.size(), new_dev_addr.size()); //the keys should match - std::vector<std::string> old_dev_addr_keys = dev_addr.get_keys(); - std::vector<std::string> new_dev_addr_keys = new_dev_addr.get_keys(); + std::vector<std::string> old_dev_addr_keys = dev_addr.keys(); + std::vector<std::string> new_dev_addr_keys = new_dev_addr.keys(); BOOST_CHECK_EQUAL_COLLECTIONS( old_dev_addr_keys.begin(), old_dev_addr_keys.end(), new_dev_addr_keys.begin(), new_dev_addr_keys.end() ); //the vals should match - std::vector<std::string> old_dev_addr_vals = dev_addr.get_vals(); - std::vector<std::string> new_dev_addr_vals = new_dev_addr.get_vals(); + std::vector<std::string> old_dev_addr_vals = dev_addr.vals(); + std::vector<std::string> new_dev_addr_vals = new_dev_addr.vals(); BOOST_CHECK_EQUAL_COLLECTIONS( old_dev_addr_vals.begin(), old_dev_addr_vals.end(), new_dev_addr_vals.begin(), new_dev_addr_vals.end() |