diff options
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: |