diff --git a/test/matrix/test_m_translation.scad b/test/matrix/test_m_translation.scad index 9751b54b..97490ae3 100644 --- a/test/matrix/test_m_translation.scad +++ b/test/matrix/test_m_translation.scad @@ -1,4 +1,3 @@ -use ; use ; module test_m_translation() { @@ -7,7 +6,7 @@ module test_m_translation() { expected = [[1, 0, 0, 10], [0, 1, 0, 20], [0, 0, 1, 0], [0, 0, 0, 1]]; actual = m_translation([10, 20, 0]); - assertEqualPoints(expected, actual); + assert(expected == actual); } test_m_translation(); \ No newline at end of file