change: rename builtin function, sleep_N_secs => sleep

This commit is contained in:
debugtalk
2019-11-03 15:54:59 +08:00
parent 9a7bccb52f
commit 36ebe221f1
2 changed files with 8 additions and 11 deletions

View File

@@ -52,11 +52,11 @@ class TestRunner(ApiServerUnittest):
"name": "basic test with httpbin",
"base_url": HTTPBIN_SERVER,
"setup_hooks": [
"${sleep_N_secs(0.5)}",
"${sleep(0.5)}",
"${hook_print(setup)}"
],
"teardown_hooks": [
"${sleep_N_secs(1)}",
"${sleep(1)}",
"${hook_print(teardown)}"
]
},