Skip to content

Commit

Permalink
Update Matrix3.tests.js
Browse files Browse the repository at this point in the history
Fix unit test.
  • Loading branch information
Mugen87 authored Dec 2, 2024
1 parent 45b953d commit 480c414
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/src/math/Matrix3.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 ) {

Expand Down Expand Up @@ -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 );
Expand Down

0 comments on commit 480c414

Please sign in to comment.