We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fb8db2 commit 78224abCopy full SHA for 78224ab
tests/test_image_captcha.py
@@ -24,7 +24,7 @@ class TestImageCaptcha(BaseTest):
24
"languagePool": "en",
25
}
26
27
- def test_sio_success_file(self, mocker):
+ def test_sio_success_file(self):
28
instance = ImageToTextCaptcha(api_key=self.API_KEY)
29
result = instance.captcha_handler(captcha_file=self.captcha_file)
30
@@ -34,7 +34,7 @@ def test_sio_success_file(self, mocker):
34
assert ser_result.taskId is not None
35
assert ser_result.cost != 0.0
36
37
- async def test_aio_success_file(self, mocker):
+ async def test_aio_success_file(self):
38
39
result = await instance.aio_captcha_handler(captcha_file=self.captcha_file)
40
0 commit comments