diff options
-rwxr-xr-x | spec/unit/parser/scope.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/parser/scope.rb b/spec/unit/parser/scope.rb index 0859eadb4..d7800e4b3 100755 --- a/spec/unit/parser/scope.rb +++ b/spec/unit/parser/scope.rb @@ -43,7 +43,7 @@ describe Puppet::Parser::Scope do describe "and the variable is qualified" do before do @parser = Puppet::Parser::Parser.new() - @compiler = Puppet::Parser::Compiler.new(stub("node", :name => "foonode"), @parser) + @compiler = Puppet::Parser::Compiler.new(stub("node", :name => "foonode", :classes => []), @parser) @scope.compiler = @compiler @scope.parser = @parser end |