summaryrefslogtreecommitdiffstats
path: root/spec/unit/parser/ast/boolean_operator_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/parser/ast/boolean_operator_spec.rb')
-rwxr-xr-xspec/unit/parser/ast/boolean_operator_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/parser/ast/boolean_operator_spec.rb b/spec/unit/parser/ast/boolean_operator_spec.rb
index d8e9603e8..23073159a 100755
--- a/spec/unit/parser/ast/boolean_operator_spec.rb
+++ b/spec/unit/parser/ast/boolean_operator_spec.rb
@@ -7,7 +7,7 @@ describe Puppet::Parser::AST::BooleanOperator do
ast = Puppet::Parser::AST
before :each do
- @scope = Puppet::Parser::Scope.new()
+ @scope = Puppet::Parser::Scope.new
@true_ast = ast::Boolean.new( :value => true)
@false_ast = ast::Boolean.new( :value => false)
end