Skip to content

Commit

Permalink
Lose to more returns in TAP.pm6
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Aug 25, 2016
1 parent 547fc51 commit 597052f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/TAP.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ class Harness {
}
@working = @new-working;
}
return Run.new(:$waiter, :$killed);
Run.new(:$waiter, :$killed);
}
else {
my $waiter = start {
Expand All @@ -1042,7 +1042,7 @@ class Harness {
$int.close if $int;
$aggregator;
}
return Run.new(:$waiter, :$killed);
Run.new(:$waiter, :$killed);
}
}
}

0 comments on commit 597052f

Please sign in to comment.