summaryrefslogtreecommitdiffstats
path: root/spec/integration/parser
diff options
context:
space:
mode:
authorLuke Kanies <luke@reductivelabs.com>2010-01-06 17:42:42 -0800
committertest branch <puppet-dev@googlegroups.com>2010-02-17 06:50:53 -0800
commitb82b4ef04282ca0006931562f60459a1591b6268 (patch)
tree31b77674c07a382a46af8773a81826a6e52c20b3 /spec/integration/parser
parent644ad7e41880fe8c9e73a099e9d6644e19828f46 (diff)
downloadpuppet-b82b4ef04282ca0006931562f60459a1591b6268.tar.gz
puppet-b82b4ef04282ca0006931562f60459a1591b6268.tar.xz
puppet-b82b4ef04282ca0006931562f60459a1591b6268.zip
All non-transient parser references are gone
We now use references to the ResourceTypeCollection instances through the environment, which is much cleaner. The next step is to remove the Interpreter class. Signed-off-by: Luke Kanies <luke@reductivelabs.com>
Diffstat (limited to 'spec/integration/parser')
-rwxr-xr-xspec/integration/parser/compiler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/integration/parser/compiler.rb b/spec/integration/parser/compiler.rb
index 7ce24f558..512924f6f 100755
--- a/spec/integration/parser/compiler.rb
+++ b/spec/integration/parser/compiler.rb
@@ -22,7 +22,7 @@ describe Puppet::Parser::Compiler do
Puppet.settings[:config_version] = 'git rev-parse HEAD'
@parser = Puppet::Parser::Parser.new "development"
- @compiler = Puppet::Parser::Compiler.new(@node, @parser)
+ @compiler = Puppet::Parser::Compiler.new(@node)
@compiler.catalog.version.should == version
end