Browse Source

Fix test: wrong arguments passed to new Plane

Ondřej Španěl 5 years ago
parent
commit
aa5133a338
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/unit/src/math/Plane.tests.js

+ 1 - 1
test/unit/src/math/Plane.tests.js

@@ -126,7 +126,7 @@ export default QUnit.module( 'Maths', () => {
 
 		QUnit.test( "clone", ( assert ) => {
 
-			var a = new Plane( 2.0, 0.5, 0.25 );
+			var a = new Plane( new Vector3( 2.0, 0.5, 0.25 ) );
 			var b = a.clone();
 
 			assert.ok( a.equals( b ), "clones are equal" );