From: Graham Knop Date: Thu, 26 Apr 2018 14:47:46 +0000 (+0200) Subject: remove another remnant of aggregate testing X-Git-Tag: v5.90118~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=a1e953c8b8e91f1195881f13e0fa21528afd34de remove another remnant of aggregate testing --- diff --git a/xt/author/http-server.t b/xt/author/http-server.t index 2285211..8667cad 100644 --- a/xt/author/http-server.t +++ b/xt/author/http-server.t @@ -107,15 +107,11 @@ sub prove { if (!(my $pid = fork)) { require TAP::Harness; - my $aggr = -e '.aggregating'; my $harness = TAP::Harness->new({ - ($aggr ? (test_args => \@tests) : ()), lib => ['lib'], }); - my $aggregator = $aggr - ? $harness->runtests('t/aggregate.t') - : $harness->runtests(@tests); + my $aggregator = $harness->runtests(@tests); exit $aggregator->has_errors ? 1 : 0; } else {