summaryrefslogtreecommitdiff
path: root/tests/simple_wait_2n/node.py
blob: 86b06de7d04b27ec73a5470e2b6cd48865749da0 (plain)
1
2
3
4
5
6
7
8
9
#!/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")