Skip to content

Commit

Permalink
sleep?
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrudd2 committed May 24, 2024
1 parent 9a177ca commit a644441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clickplc/tests/test_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async def _sim():
context = ModbusServerContext(slaves=store, single=True)
server = ModbusTcpServer(context=context, address=("127.0.0.1", 5020))
asyncio.ensure_future(server.serve_forever()) # noqa: RUF006
await(asyncio.sleep(0.1))
await(asyncio.sleep(1))

@pytest.fixture(scope='session')
async def plc_driver():
Expand Down

0 comments on commit a644441

Please sign in to comment.