Improve emc test resiliancy

This commit is contained in:
Matthias 2022-12-19 07:01:22 +01:00
parent 2711605df6
commit 86b30d2d66
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ async def test_emc_create_connection_error(default_conf, caplog, mocker):
emc = ExternalMessageConsumer(default_conf, dp)
try:
await asyncio.sleep(0.01)
await asyncio.sleep(0.05)
assert log_has("Unexpected error has occurred:", caplog)
finally:
emc.shutdown()