From 480c4140232d9d16e191f8666f583ec73e666f2e Mon Sep 17 00:00:00 2001 From: Michael Herzog Date: Mon, 2 Dec 2024 18:23:02 +0100 Subject: [PATCH] Update Matrix3.tests.js Fix unit test. --- test/unit/src/math/Matrix3.tests.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/unit/src/math/Matrix3.tests.js b/test/unit/src/math/Matrix3.tests.js index d573071623b0ab..5d33e4ed48dc57 100644 --- a/test/unit/src/math/Matrix3.tests.js +++ b/test/unit/src/math/Matrix3.tests.js @@ -2,6 +2,7 @@ import { Matrix3 } from '../../../../src/math/Matrix3.js'; import { Matrix4 } from '../../../../src/math/Matrix4.js'; +import { Vector2 } from '../../../../src/math/Vector2.js'; function matrixEquals3( b, a, tolerance ) { @@ -448,7 +449,7 @@ export default QUnit.module( 'Maths', () => { } ); - QUnit.todo( 'makeTranslation', ( assert ) => { + QUnit.test( 'makeTranslation', ( assert ) => { const a = new Matrix3(); const b = new Vector2( 1, 2 );