[test] Rename get_testcases to gettestcases

Apparently, newer versions of nosetests are somewhat over-eager in their test discovery.
This commit is contained in:
Philipp Hagemeister 2014-03-17 14:30:13 +01:00
parent e125c21531
commit ff14fc4964
3 changed files with 5 additions and 5 deletions

View file

@ -9,7 +9,7 @@ import unittest
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from test.helper import get_testcases
from test.helper import gettestcases
from youtube_dl.extractor import (
FacebookIE,
@ -105,7 +105,7 @@ class TestAllURLsMatching(unittest.TestCase):
def test_no_duplicates(self):
ies = gen_extractors()
for tc in get_testcases():
for tc in gettestcases():
url = tc['url']
for ie in ies:
if type(ie).__name__ in ('GenericIE', tc['name'] + 'IE'):