diff options
author | Marius Kintel <marius@kintel.net> | 2012-01-04 17:05:30 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-01-04 17:05:30 (GMT) |
commit | 9856607d278d3843d56dab8325a552351accd2cf (patch) | |
tree | 151074d2394a0929737292fa10d0a42cf8cf8fc2 /testdata/scad/features/include-tests.scad | |
parent | 9bac643ed815d18af07dbdd78f68d54e34ab68b9 (diff) | |
parent | 9f16204889c8e42785bf82d6a5db74c80e0027b6 (diff) |
Merge pull request #54 from openscad/parserfix
fix crash bug rpt by nop head - 'use <x.scad>' when x.scad doesnt exist
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(); |