Skip to content

Commit

Permalink
Fix test now we don't have an extra NL anymore
Browse files Browse the repository at this point in the history
Which I think FROGGS fixed recently
  • Loading branch information
lizmat committed Aug 17, 2015
1 parent f185e08 commit 22c8517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/01-sanity/55-use-trace.t
Expand Up @@ -24,7 +24,7 @@ CODE
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/, "is the trace ok?";
is $p.err.lines.join("\n"), qq:to/STDERR/.chop, "is the trace ok?";
4 ($filename:4)
\$a++
10 ($filename:10)
Expand Down

0 comments on commit 22c8517

Please sign in to comment.