diff options
| author | Luke Kanies <luke@reductivelabs.com> | 2010-01-30 23:36:32 -0600 |
|---|---|---|
| committer | test branch <puppet-dev@googlegroups.com> | 2010-02-17 06:50:53 -0800 |
| commit | 9c867e6d79dcc56cd34683c9a339dc729ad2d291 (patch) | |
| tree | 27ee2a51648d11891a5168db1e63e064244eeef5 /test/language/ast/variable.rb | |
| parent | 274d1c5e78250640b8d2c40201ca2586c0088f32 (diff) | |
| download | puppet-9c867e6d79dcc56cd34683c9a339dc729ad2d291.tar.gz puppet-9c867e6d79dcc56cd34683c9a339dc729ad2d291.tar.xz puppet-9c867e6d79dcc56cd34683c9a339dc729ad2d291.zip | |
Fixing most of the broken tests in test/
This involves a bit of refactoring in the rest
of the code to make it all work, but most of the
changes are fixing or removing old tests.
Signed-off-by: Luke Kanies <luke@reductivelabs.com>
Diffstat (limited to 'test/language/ast/variable.rb')
| -rwxr-xr-x | test/language/ast/variable.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/language/ast/variable.rb b/test/language/ast/variable.rb index 49b1dbbc2..6a8b028bd 100755 --- a/test/language/ast/variable.rb +++ b/test/language/ast/variable.rb @@ -15,8 +15,7 @@ class TestVariable < Test::Unit::TestCase def setup super - @interp = mkinterp - @scope = mkscope :interp => @interp + @scope = mkscope @name = "myvar" @var = AST::Variable.new(:value => @name) end |
