@@ -16,7 +16,9 @@ async def readany(self):
16
16
17
17
18
18
@pytest .mark .asyncio
19
- async def test_web_handler (irc3_bot_factory , aiohttp_raw_server , aiohttp_client ):
19
+ async def test_web_handler (
20
+ irc3_bot_factory , aiohttp_raw_server , aiohttp_client
21
+ ):
20
22
bot = irc3_bot_factory (includes = ['irc3.plugins.web' ])
21
23
plugin = bot .get_plugin (web .Web )
22
24
plugin .server_ready ()
@@ -27,8 +29,9 @@ async def test_web_handler(irc3_bot_factory, aiohttp_raw_server, aiohttp_client)
27
29
28
30
29
31
@pytest .mark .asyncio
30
- async def test_web_handler_post (irc3_bot_factory ,
31
- aiohttp_raw_server , aiohttp_client ):
32
+ async def test_web_handler_post (
33
+ irc3_bot_factory , aiohttp_raw_server , aiohttp_client
34
+ ):
32
35
bot = irc3_bot_factory (includes = ['irc3.plugins.web' ])
33
36
plugin = bot .get_plugin (web .Web )
34
37
@@ -42,8 +45,9 @@ async def test_web_handler_post(irc3_bot_factory,
42
45
43
46
44
47
@pytest .mark .asyncio
45
- async def test_web_handler_post_auth (irc3_bot_factory ,
46
- aiohttp_raw_server , aiohttp_client ):
48
+ async def test_web_handler_post_auth (
49
+ irc3_bot_factory , aiohttp_raw_server , aiohttp_client
50
+ ):
47
51
bot = irc3_bot_factory (** {
48
52
'includes' : ['irc3.plugins.web' ],
49
53
'irc3.plugins.web' : {'api_key' : 'toomanysecrets' },
@@ -66,7 +70,9 @@ async def test_web_handler_post_auth(irc3_bot_factory,
66
70
67
71
68
72
@pytest .mark .asyncio
69
- async def test_web_handler_404 (irc3_bot_factory , aiohttp_raw_server , aiohttp_client ):
73
+ async def test_web_handler_404 (
74
+ irc3_bot_factory , aiohttp_raw_server , aiohttp_client
75
+ ):
70
76
bot = irc3_bot_factory (includes = ['irc3.plugins.web' ])
71
77
plugin = bot .get_plugin (web .Web )
72
78
0 commit comments