Browse Source

Terminate statement in Sphere test

Tristan Valcke 8 years ago
parent
commit
afa1c183fd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/unit/math/Sphere.js

+ 1 - 1
test/unit/math/Sphere.js

@@ -92,7 +92,7 @@ test( "getBoundingBox", function() {
 
 	ok( a.getBoundingBox().equals( new THREE.Box3( zero3, two3 ) ), "Passed!" );
 
-	a.set( zero3, 0 )
+	a.set( zero3, 0 );
 	ok( a.getBoundingBox().equals( new THREE.Box3( zero3, zero3 ) ), "Passed!" );
 });