@@ -16,7 +16,7 @@ async def readany(self):
16
16
17
17
18
18
@pytest .mark .asyncio
19
- async def test_web_handler (irc3_bot_factory , raw_test_server , test_client ):
19
+ async def test_web_handler (irc3_bot_factory , aiohttp_raw_server , aiohttp_client ):
20
20
bot = irc3_bot_factory (includes = ['irc3.plugins.web' ])
21
21
plugin = bot .get_plugin (web .Web )
22
22
plugin .server_ready ()
@@ -28,7 +28,7 @@ async def test_web_handler(irc3_bot_factory, raw_test_server, test_client):
28
28
29
29
@pytest .mark .asyncio
30
30
async def test_web_handler_post (irc3_bot_factory ,
31
- raw_test_server , test_client ):
31
+ aiohttp_raw_server , aiohttp_client ):
32
32
bot = irc3_bot_factory (includes = ['irc3.plugins.web' ])
33
33
plugin = bot .get_plugin (web .Web )
34
34
@@ -43,7 +43,7 @@ async def test_web_handler_post(irc3_bot_factory,
43
43
44
44
@pytest .mark .asyncio
45
45
async def test_web_handler_post_auth (irc3_bot_factory ,
46
- raw_test_server , test_client ):
46
+ aiohttp_raw_server , aiohttp_client ):
47
47
bot = irc3_bot_factory (** {
48
48
'includes' : ['irc3.plugins.web' ],
49
49
'irc3.plugins.web' : {'api_key' : 'toomanysecrets' },
@@ -66,7 +66,7 @@ async def test_web_handler_post_auth(irc3_bot_factory,
66
66
67
67
68
68
@pytest .mark .asyncio
69
- async def test_web_handler_404 (irc3_bot_factory , raw_test_server , test_client ):
69
+ async def test_web_handler_404 (irc3_bot_factory , aiohttp_raw_server , aiohttp_client ):
70
70
bot = irc3_bot_factory (includes = ['irc3.plugins.web' ])
71
71
plugin = bot .get_plugin (web .Web )
72
72
0 commit comments