Browse Source

Merge pull request #3555 from techtonik/patch-1

test_string.cpp - show numbers of passed and total tests correctly
Rémi Verschelde 9 năm trước cách đây
mục cha
commit
d2f2eed963
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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("*************\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;
 }