diff options
Diffstat (limited to 'testdata/scad/features/include-tests.scad')
-rw-r--r-- | testdata/scad/features/include-tests.scad | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testdata/scad/features/include-tests.scad b/testdata/scad/features/include-tests.scad index 36c04ca..fc4e9d0 100644 --- a/testdata/scad/features/include-tests.scad +++ b/testdata/scad/features/include-tests.scad @@ -7,7 +7,7 @@ include <non/existent/path/non-file> //Test with empty path include <include-test5.scad> -//Test without preceeding space +//Test without preceding space include<include-test5.scad> //Test with other strange character that is allowed @@ -34,7 +34,7 @@ module test1() translate([-2,-2,0]) test6(); //Just to give a top level object - translate([0,-2,0]) sphere(0.7, $fn=16); + translate([0,-2,0]) sphere(test2_variable, $fn=16); } test1(); |