esds/tests/api_wait_2n/node.py

10 lines
179 B
Python
Raw Normal View History

2022-06-09 21:48:32 +02:00
#!/usr/bin/env python
def execute(api):
api.log("Before wait")
api.wait(2)
api.log("After wait")
api.log("Before wait")
api.wait(3)
api.log("After wait")