From: Rafael Kitover Date: Mon, 29 Jun 2009 21:45:19 +0000 (+0000) Subject: branch pushed, removing X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6b7d3398c161dcdb9b1a9cf590ba2d424ca2a9dc;p=dbsrgits%2FDBIx-Class-Historic.git branch pushed, removing --- diff --git a/t/76select.t b/t/76select.t index bee69e6..8c46a7e 100644 --- a/t/76select.t +++ b/t/76select.t @@ -64,6 +64,9 @@ my $cds = $schema->resultset ('CD')->search ({}, { order_by => 'me.cdid'}); # ma cmp_ok ($cds->count, '>', 2, 'Initially populated with more than 2 CDs'); my $table = $cds->result_source->name; + +$DB::single = 1; + my $subsel = $cds->search ({}, { columns => [qw/cdid title/], from => \ "(SELECT cdid, title FROM $table LIMIT 2) me",