Merge pull request #3555 from techtonik/patch-1

test_string.cpp - show numbers of passed and total tests correctly
This commit is contained in:
Rémi Verschelde 2016-02-02 16:46:07 +01:00
commit d2f2eed963

View file

@ -904,7 +904,7 @@ MainLoop* test() {
OS::get_singleton()->print("***TOTALS!***\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;
}