esds/tests/api_wait_2n/node.py
2022-06-30 12:11:59 +02:00

9 lines
179 B
Python

#!/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")