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 370c018 commit f77d131Copy full SHA for f77d131
1 file changed
tests/endpoints/slack/test_slack_events.py
@@ -17,15 +17,6 @@ async def test_team_join_handler_exists(bot):
17
)
18
19
20
-async def test_team_join_waits_30_seconds(bot, aiohttp_client):
21
- asyncio.sleep = CoroutineMock()
22
- create_endpoints(bot["plugins"]["slack"])
23
- bot["plugins"]["slack"] = CoroutineMock()
24
-
25
- await team_join(TEAM_JOIN["event"], bot)
26
- asyncio.sleep.assert_awaited_with(30)
27
28
29
async def test_edits_are_logged(bot, aiohttp_client, caplog):
30
client = await aiohttp_client(bot)
31
0 commit comments