소스 검색

test_string.cpp - show numbers of passed and total tests correctly (fixes #3553)

anatoly techtonik 9 년 전
부모
커밋
3d1b15e0d7
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;
 }