1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tests: omit testsuite_begin/end() optional (#15871)

This commit is contained in:
yuyi
2022-09-25 15:29:25 +08:00
committed by GitHub
parent 947a1f2c65
commit c3548c9413
3 changed files with 6 additions and 6 deletions

View File

@ -32,11 +32,11 @@ fn cleanup() {
os.rm(test_dir_zip) or {}
}
fn testsuite_begin() ? {
fn testsuite_begin() {
cleanup()
}
fn testsuite_end() ? {
fn testsuite_end() {
cleanup()
}