about summary refs log tree commit diff
path: root/test/helper.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-04-21 07:56:51 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-04-21 07:56:51 +0200
commitb9ba5dfa28baa4541016b49eadf74d731dc8936c (patch)
treed37433dea21c5dd7c5b3e88cd89b227865b72fd6 /test/helper.py
parent4086f119292ab1d5deab38ece163322e1011eba0 (diff)
downloadyoutube-dl-b9ba5dfa28baa4541016b49eadf74d731dc8936c.tar.gz
youtube-dl-b9ba5dfa28baa4541016b49eadf74d731dc8936c.tar.xz
youtube-dl-b9ba5dfa28baa4541016b49eadf74d731dc8936c.zip
[test helper] Correct only_matching test gathering
Diffstat (limited to 'test/helper.py')
-rw-r--r--test/helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helper.py b/test/helper.py
index 09873aea3..da714078d 100644
--- a/test/helper.py
+++ b/test/helper.py
@@ -85,7 +85,7 @@ def gettestcases(include_onlymatching=False):
         else:
             tests = getattr(ie, '_TESTS', [])
         for t in tests:
-            if not include_onlymatching and getattr(t, 'only_matching', False):
+            if not include_onlymatching and t.get('only_matching', False):
                 continue
             t['name'] = type(ie).__name__[:-len('IE')]
             yield t