test_string.cpp - show numbers of passed and total tests correctly (fixes #3553)

This commit is contained in:
anatoly techtonik 2016-02-02 18:42:09 +03:00
parent a9412b8744
commit 3d1b15e0d7

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;
}