From 3d1b15e0d7e9ec3b6788308ece654c8bfbb3c956 Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Tue, 2 Feb 2016 18:42:09 +0300 Subject: [PATCH] test_string.cpp - show numbers of passed and total tests correctly (fixes #3553) --- bin/tests/test_string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/test_string.cpp b/bin/tests/test_string.cpp index fe7bf4d9cf7..60ef1da540a 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; }