Merge 'DBIx-Class-current' into 'bulk_create'
Matt S Trout [Tue, 29 May 2007 04:48:28 +0000 (04:48 +0000)]
r51845@cain (orig r3392):  matthewt | 2007-05-28 23:48:28 +0000
remove debug warn

t/76joins.t

index 1e43b56..c03df6b 100644 (file)
@@ -238,7 +238,7 @@ is($queries, 1, 'find with prefetch ran exactly 1 select statement (excluding co
 
 $queries = 0;
 
-$schema->storage->debugcb(sub { $queries++; warn "Q: @_"; });
+$schema->storage->debugcb(sub { $queries++; });
 
 $cd = $schema->resultset('CD')->find(1, { prefetch => { cd_to_producer => 'producer' } });