diff options
-rw-r--r-- | testdata/modulecache-tests/moduleoverload.scad | 2 | ||||
-rw-r--r-- | testdata/modulecache-tests/mymodule-lib.scad | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testdata/modulecache-tests/moduleoverload.scad b/testdata/modulecache-tests/moduleoverload.scad index 1928715..f8ebc6a 100644 --- a/testdata/modulecache-tests/moduleoverload.scad +++ b/testdata/modulecache-tests/moduleoverload.scad @@ -1,7 +1,7 @@ use <mymodule-lib.scad> module mymodule() { - sphere(); + sphere(5); } mymodule(); diff --git a/testdata/modulecache-tests/mymodule-lib.scad b/testdata/modulecache-tests/mymodule-lib.scad index 9d68581..c6f30f7 100644 --- a/testdata/modulecache-tests/mymodule-lib.scad +++ b/testdata/modulecache-tests/mymodule-lib.scad @@ -1,3 +1,3 @@ module mymodule() { - cylinder(center=true); + cylinder(r=5, center=true); } |