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

tests: use term.header_left, and a more compact output layout

This commit is contained in:
Delyan Angelov
2021-05-20 10:03:53 +03:00
parent 00b3092a92
commit dd0a97541c
2 changed files with 10 additions and 8 deletions

View File

@ -441,11 +441,11 @@ pub fn building_any_v_binaries_failed() bool {
}
pub fn eheader(msg string) {
eprintln(term.header(msg, '-'))
eprintln(term.header_left(msg, '-'))
}
pub fn header(msg string) {
println(term.header(msg, '-'))
println(term.header_left(msg, '-'))
}
pub fn setup_new_vtmp_folder() string {