diff options
author | anatoly techtonik <techtonik@gmail.com> | 2016-02-02 18:42:09 +0300 |
---|---|---|
committer | anatoly techtonik <techtonik@gmail.com> | 2016-02-02 18:42:09 +0300 |
commit | 3d1b15e0d7e9ec3b6788308ece654c8bfbb3c956 (patch) | |
tree | e9780c668cc27daf8a2cd7117954d31a0c8bbf66 /bin | |
parent | a9412b8744a570db96d08747321e45347790801f (diff) |
test_string.cpp - show numbers of passed and total tests correctly (fixes #3553)
Diffstat (limited to 'bin')
-rw-r--r-- | bin/tests/test_string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/tests/test_string.cpp b/bin/tests/test_string.cpp index fe7bf4d9cf..60ef1da540 100644 --- a/bin/tests/test_string.cpp +++ b/bin/tests/test_string.cpp @@ -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; } |