Pārlūkot izejas kodu

Merge pull request #3555 from techtonik/patch-1

test_string.cpp - show numbers of passed and total tests correctly
Rémi Verschelde 9 gadi atpakaļ
vecāks
revīzija
d2f2eed963
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      bin/tests/test_string.cpp

+ 1 - 1
bin/tests/test_string.cpp

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