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:
@ -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()
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user