Update tests

This commit is contained in:
Gregory Lirent 2022-06-10 20:50:03 +03:00
parent 641bb49839
commit 8dc5a84d49
3 changed files with 3 additions and 3 deletions

View File

@ -79,5 +79,5 @@ void array_remove_random(arr_t* x, _Bool silent, unsigned int hpos) {
} }
} }
put_separator(hpos); if (!silent) put_separator(hpos);
} }

View File

@ -58,7 +58,7 @@ void visual_remove(list_t* x) {
list_print(x, 0, 0); list_print(x, 0, 0);
psleep(100000); psleep(100000);
if (!0) fputs("\e[u\e[J", stdout); fputs("\e[u\e[J", stdout);
} }
} }

View File

@ -78,5 +78,5 @@ void list_remove_random(list_t* x, _Bool silent, unsigned int hpos) {
} }
} }
put_separator(hpos); if (!silent) put_separator(hpos);
} }