1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 05:51:41 +02:00

changed hook names

This commit is contained in:
Justin Lin
2017-05-26 10:26:30 +08:00
parent ea8ca50e2a
commit 22b8d26dea
2 changed files with 6 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ module test_line2d() {
include <line2d.scad>;
module cap(point, style) {
module test_line2d_cap(point, style) {
assertTrue(
(point == p1 && style == "CAP_SQUARE") ||
(point == p2 && style == "CAP_SQUARE")
@@ -33,7 +33,7 @@ module test_line2d() {
include <line2d.scad>;
module cap(point, style) {
module test_line2d_cap(point, style) {
assertTrue(
(point == p1 && style == "CAP_ROUND") ||
(point == p2 && style == "CAP_ROUND")
@@ -56,7 +56,7 @@ module test_line2d() {
include <line2d.scad>;
module cap(point, style) {
module test_line2d_cap(point, style) {
assertTrue(
(point == p1 && style == "CAP_BUTT") ||
(point == p2 && style == "CAP_BUTT")