projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
13dc64c
)
Work around nosetests nosiness
author
Philipp Hagemeister
<phihag@phihag.de>
Sun, 22 Sep 2013 09:45:29 +0000
(11:45 +0200)
committer
Philipp Hagemeister
<phihag@phihag.de>
Sun, 22 Sep 2013 09:45:29 +0000
(11:45 +0200)
test/test_youtube_signature.py
patch
|
blob
|
history
diff --git
a/test/test_youtube_signature.py
b/test/test_youtube_signature.py
index 36533cf1f976b3abd852865639fd60ea18e6a8dc..5007d9a16305f055d38231cf2626dedcbd0c70ee 100644
(file)
--- a/
test/test_youtube_signature.py
+++ b/
test/test_youtube_signature.py
@@
-43,7
+43,7
@@
class TestSignature(unittest.TestCase):
os.mkdir(self.TESTDATA_DIR)
-def make_t
est
func(url, stype, sig_length, expected_sig):
+def make_tfunc(url, stype, sig_length, expected_sig):
basename = url.rpartition('/')[2]
m = re.match(r'.*-([a-zA-Z0-9_-]+)\.[a-z]+$', basename)
assert m, '%r should follow URL format' % basename
@@
-73,7
+73,7
@@
def make_testfunc(url, stype, sig_length, expected_sig):
setattr(TestSignature, test_func.__name__, test_func)
for test_spec in _TESTS:
- make_t
est
func(*test_spec)
+ make_tfunc(*test_spec)
if __name__ == '__main__':