removing debug statement
Rafael Kitover [Mon, 29 Jun 2009 21:46:54 +0000 (21:46 +0000)]
t/76select.t

index 8c46a7e..bee69e6 100644 (file)
@@ -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",