diff options
author | 2013-07-20 22:03:43 +0200 | |
---|---|---|
committer | 2013-07-20 22:03:43 +0200 | |
commit | d1694e31b8b5570508bfbc13cc817dc9b0d8b2a8 (patch) | |
tree | 50d89611fab4e02c36155cec663b684167a80252 /tests/helper/PluginTester.py | |
parent | Merge plugins from stable (diff) | |
parent | tried to fix hoster tester, removed unneeded files (diff) | |
download | pyload-d1694e31b8b5570508bfbc13cc817dc9b0d8b2a8.tar.xz |
Merge branch 'master' of https://github.com/pyload/pyload
Diffstat (limited to 'tests/helper/PluginTester.py')
-rw-r--r-- | tests/helper/PluginTester.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/helper/PluginTester.py b/tests/helper/PluginTester.py index 9312eb7bf..2bfb16af7 100644 --- a/tests/helper/PluginTester.py +++ b/tests/helper/PluginTester.py @@ -16,7 +16,8 @@ from json import loads from Stubs import Thread, Core, noop from pyload.network.RequestFactory import getRequest, getURL -from pyload.plugins.Hoster import Hoster, Abort, Fail +from pyload.plugins.Base import Abort, Fail +from pyload.plugins.Hoster import Hoster def _wait(self): """ waits the time previously set """ @@ -106,8 +107,6 @@ def respond(ticket, value): finally: f.close() - - def invalidCaptcha(self): log(DEBUG, "Captcha invalid") if self.cTask: |