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