Skip to content

Commit

Permalink
Fixed test broken by 7f30326
Browse files Browse the repository at this point in the history
Line numbers in errors/trace are now "line $number" rather than
":$number"
  • Loading branch information
ungrim97 committed Dec 24, 2015
1 parent fb475d2 commit 8f1d504
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/01-sanity/55-use-trace.t
Expand Up @@ -25,9 +25,9 @@ my $p = run($*EXECUTABLE, $filename, :out, :err);
ok $p ~~ Proc, "did we get a Proc?";
is $p.out.lines.join, "42", "is the program output ok?";
is $p.err.lines.join("\n"), qq:to/STDERR/.chomp, "is the trace ok?";
4 ($filename:4)
4 ($filename line 4)
\$a++
10 ($filename:10)
10 ($filename line 10)
\$a -= 1
STDERR

Expand Down

0 comments on commit 8f1d504

Please sign in to comment.