From: Rafael Kitover Date: Mon, 29 Jun 2009 21:46:54 +0000 (+0000) Subject: removing debug statement X-Git-Tag: v0.08109~29^2~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5fd73721c5877a68d3ca0746e27f52701b57790d;p=dbsrgits%2FDBIx-Class.git removing debug statement --- diff --git a/t/76select.t b/t/76select.t index 8c46a7e..bee69e6 100644 --- a/t/76select.t +++ b/t/76select.t @@ -64,9 +64,6 @@ 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",