mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 09:05:52 +07:00
(cherry picked from commit 202d5a6aadd282fb5144d16039e5661c22d567ec) GitOrigin-RevId: c290897d0eff63f4e4192d7368c272e9a4e73ba8
17 lines
163 B
Python
17 lines
163 B
Python
import time
|
|
|
|
|
|
def test_1():
|
|
time.sleep(1)
|
|
assert True
|
|
|
|
|
|
def test_2():
|
|
time.sleep(2)
|
|
assert False
|
|
|
|
|
|
def test_3():
|
|
time.sleep(3)
|
|
assert True
|