diff options
Diffstat (limited to 'host')
-rwxr-xr-x | host/tests/devtest/uhd_test_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/tests/devtest/uhd_test_base.py b/host/tests/devtest/uhd_test_base.py index 046e6fb47..07a95ae3d 100755 --- a/host/tests/devtest/uhd_test_base.py +++ b/host/tests/devtest/uhd_test_base.py @@ -208,7 +208,7 @@ class uhd_example_test_case(uhd_test_case): Calls run_test(). """ for test_name, test_args in self.test_params.iteritems(): - if not test_args.has_key('product') or (self.usrp_info['product'] in test_args.get('products', [])): + if not test_args.has_key('products') or (self.usrp_info['product'] in test_args.get('products', [])): run_results = self.run_test(test_name, test_args) passed = bool(run_results) if isinstance(run_results, dict): |