diff --git a/tests/4_determinant/test.js b/tests/4_determinant/test.js index a11c7d2..5fc9542 100644 --- a/tests/4_determinant/test.js +++ b/tests/4_determinant/test.js @@ -12,6 +12,6 @@ export default { const matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]; const det = await calculateDeterminant(matrix); assert.strictEqual(det, 0, "Test Failed: Determinant should be 0."); - return det; } }; +