tests numbers are zero padded

This commit is contained in:
mrbesen 2020-10-02 16:02:14 +02:00
parent c69b209dd4
commit 6337609f1b
Signed by: MrBesen
GPG Key ID: 596B2350DCD67504
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ int main(int argc, char** argv) {
int testcount = 0;
for(; *current; current++) {
testcount++;
printf("\033[1mRunning test number: %d ", testcount);
printf("\033[1mRunning test number: %02d ", testcount);
if((*current)()) {
printf("\033[1;92msucceeded\033[0;1m!\n");
} else {