1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-30 09:49:59 +02:00

use new assertEqualPoints

This commit is contained in:
Justin Lin
2019-06-11 14:52:44 +08:00
parent fcddf7b187
commit 627909fc9e
2 changed files with 4 additions and 7 deletions

View File

@@ -17,11 +17,8 @@ module test_bezier_curve() {
actual = bezier_curve(t_step,
[p0, p1, p2, p3]
);
// round_echo_pts(actual, float_digits = 3);
assertEqualPoints(expected, actual, float_digits = 3);
assertEqualPoints(expected, actual);
}
test_bezier_curve();

File diff suppressed because one or more lines are too long