소스 검색

two -> three

simonThiele 9 년 전
부모
커밋
d9eb32c8f6
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      test/unit/core/Raycaster.js

+ 2 - 2
test/unit/core/Raycaster.js

@@ -12,7 +12,7 @@ test( "intersectObjects", function() {
 		"no recursive search should lead to one hit" );
 
 	ok ( raycaster.intersectObjects( objectsToCheck, true ).length === 3,
-		"recursive search should lead to two hits" );
+		"recursive search should lead to three hits" );
 
 	var intersections = raycaster.intersectObjects( objectsToCheck, true );
 	for ( var i = 0; i < intersections.length - 1; i++ ) {
@@ -30,7 +30,7 @@ test( "intersectObject", function() {
 		"no recursive search should lead to one hit" );
 
 	ok ( raycaster.intersectObject( objectsToCheck[ 0 ], true ).length === 3,
-		"recursive search should lead to two hits" );
+		"recursive search should lead to three hits" );
 
 	var intersections = raycaster.intersectObject( objectsToCheck[ 0 ], true );
 	for ( var i = 0; i < intersections.length - 1; i++ ) {