projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
9809a6d
)
remove debug warn
Matt S Trout [Mon, 28 May 2007 23:48:28 +0000 (23:48 +0000)]
t/76joins.t
patch
|
blob
|
blame
|
history
diff --git
a/t/76joins.t
b/t/76joins.t
index
1e43b56
..
c03df6b
100644
(file)
--- a/
t/76joins.t
+++ b/
t/76joins.t
@@
-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' } });