diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-05-04 10:55:35 -0700 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-05-12 12:04:11 -0500 |
commit | 1eecf8cf532fab95f6a1cfe2cb812cadfa543182 (patch) | |
tree | 8a9e47ed165fa870edf4f7e7e71c173cfe9b00eb /host | |
parent | b9576f9601ffa31ffe38ee44421289a9ce2db575 (diff) | |
download | uhd-1eecf8cf532fab95f6a1cfe2cb812cadfa543182.tar.gz uhd-1eecf8cf532fab95f6a1cfe2cb812cadfa543182.tar.bz2 uhd-1eecf8cf532fab95f6a1cfe2cb812cadfa543182.zip |
tests: Remove 'six' dependency from devtest
This removes 'six' as a dependency for devtest.
Diffstat (limited to 'host')
-rwxr-xr-x | host/tests/devtest/uhd_test_base.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/host/tests/devtest/uhd_test_base.py b/host/tests/devtest/uhd_test_base.py index 11ff9b026..80ce5b9f0 100755 --- a/host/tests/devtest/uhd_test_base.py +++ b/host/tests/devtest/uhd_test_base.py @@ -23,7 +23,6 @@ try: from ruamel import yaml except: import yaml -from six import iteritems from usrp_probe import get_usrp_list #-------------------------------------------------------------------------- @@ -243,7 +242,7 @@ class uhd_example_test_case(uhd_test_case): Calls run_test(). """ test_params = getattr(self, 'test_params', {}) - for test_name, test_args in iteritems(test_params): + for test_name, test_args in test_params.items(): time.sleep(15) # Wait for X300 devices to reclaim them if not 'products' in test_args \ or (self.usrp_info['product'] in test_args.get('products', [])): |