Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
adjust expectation after off-by-one was fixed
  • Loading branch information
FROGGS committed Jan 23, 2014
1 parent 59e90f5 commit 67c03a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion S06-advanced/callframe.t
Expand Up @@ -12,7 +12,7 @@ my $baseline = 10;
isa_ok callframe(), CallFrame, 'callframe() returns a CallFrame';

sub f() {
is callframe().line, $baseline + 5, 'callframe().line';
is callframe().line, $baseline + 4, 'callframe().line';
ok callframe().file ~~ /« callframe »/, '.file';

#?rakudo skip 'Unable to resolve method inline in type CallFrame'
Expand Down
6 changes: 3 additions & 3 deletions integration/error-reporting.t
Expand Up @@ -111,9 +111,9 @@ is_run 'die "foo"; END { say "end run" }',

# RT #113848
{
try EVAL ' # line 1
use v6; # line 2
(1 + 2) = 3; # line 3
try EVAL 'use v6; # line 1
# another line so we three in total
(1 + 2) = 3; # line 3
';

#?niecza skip "Unable to resolve method backtrace in type Str"
Expand Down

0 comments on commit 67c03a7

Please sign in to comment.