remove another remnant of aggregate testing
Graham Knop [Thu, 26 Apr 2018 14:47:46 +0000 (16:47 +0200)]
xt/author/http-server.t

index 2285211..8667cad 100644 (file)
@@ -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 {