diff options
author | Marius Kintel <marius@kintel.net> | 2012-01-03 19:34:31 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-01-03 19:34:31 (GMT) |
commit | fac508c8cd3ceef0f0abf1edb7f48f866d8a1232 (patch) | |
tree | ebb9a7b43a93f7b2853360711610d067c5137bef /testdata/scad/features/include-tests.scad | |
parent | 597c5611072348d2d411d4f567fd8d0a46731628 (diff) |
Added use-tests, minimal change to include-tests
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(); |