瀏覽代碼

Merge pull request #3555 from techtonik/patch-1

test_string.cpp - show numbers of passed and total tests correctly
Rémi Verschelde 9 年之前
父節點
當前提交
d2f2eed963
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;
 }