Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
pmurias committed Sep 4, 2017
1 parent a260342 commit febba4e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion t/qast/01-qast.t
Expand Up @@ -2202,6 +2202,9 @@ is_qast(
my class Caller {
method from() {'caller of the sub'}
}
my class Outer {
method from() {'outside of the sub'}
}

my $called_exit_handler := 0;
my $exit_handler_return_value;
Expand Down Expand Up @@ -2236,7 +2239,7 @@ is_qast(
QAST::Op.new(
:op('bind'),
QAST::Var.new( :name('$*DYNAMIC_VAR'), :scope('lexical'), :decl('var')),
QAST::WVal.new( :value(OUter) )
QAST::WVal.new( :value(Outer) )
),
QAST::Op.new(
:op('bind'),
Expand Down

0 comments on commit febba4e

Please sign in to comment.