Merge pull request #3555 from techtonik/patch-1
test_string.cpp - show numbers of passed and total tests correctly
This commit is contained in:
commit
d2f2eed963
1 changed files with 1 additions and 1 deletions
|
@ -904,7 +904,7 @@ MainLoop* test() {
|
||||||
OS::get_singleton()->print("***TOTALS!***\n");
|
OS::get_singleton()->print("***TOTALS!***\n");
|
||||||
OS::get_singleton()->print("*************\n");
|
OS::get_singleton()->print("*************\n");
|
||||||
|
|
||||||
OS::get_singleton()->print("Passed %i of %i tests\n",count,passed);
|
OS::get_singleton()->print("Passed %i of %i tests\n", passed, count);
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue