summaryrefslogtreecommitdiff
path: root/tests/cpu.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2016-10-13 16:33:39 -0700
committerDylan Baker <dylan@pnwbakers.com>2016-11-10 10:51:00 -0800
commita8718f4da77dd8641cf844cc3af3733dcbdf263f (patch)
tree311139b0ec5d479312bc80ff7a6caf2367dce299 /tests/cpu.py
parent3ca3557d9d634c00d4435560f63b356b00258c23 (diff)
framework/profile: Drop TestProfile.filter_tests
This was just a thin wrapper around the already public TestProfile.filters list. It seems silly to have such a method when it does nothing but call self.filters.append. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'tests/cpu.py')
-rw-r--r--tests/cpu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cpu.py b/tests/cpu.py
index 7fc905eaa..65d999062 100644
--- a/tests/cpu.py
+++ b/tests/cpu.py
@@ -28,4 +28,4 @@ def filter_gpu(name, test):
return False
-profile.filter_tests(filter_gpu)
+profile.filters.append(filter_gpu)