summaryrefslogtreecommitdiffstats
path: root/spec/unit/parser/ast/ifstatement.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/parser/ast/ifstatement.rb')
-rwxr-xr-xspec/unit/parser/ast/ifstatement.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/unit/parser/ast/ifstatement.rb b/spec/unit/parser/ast/ifstatement.rb
index 10d877a4b..83121cddd 100755
--- a/spec/unit/parser/ast/ifstatement.rb
+++ b/spec/unit/parser/ast/ifstatement.rb
@@ -64,10 +64,11 @@ describe Puppet::Parser::AST::IfStatement do
end
it "should reset ephemeral statements after evaluation" do
+ @scope.expects(:ephemeral_level).returns(:level)
Puppet::Parser::Scope.stubs(:true?).returns(true)
@stmt.expects(:safeevaluate).with(@scope)
- @scope.expects(:unset_ephemeral_var)
+ @scope.expects(:unset_ephemeral_var).with(:level)
@ifstmt.evaluate(@scope)
end