X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=blobdiff_plain;f=t%2F76joins.t;h=101d71f694e8511ef7d4b93e81ca9d649afcd687;hp=92e57855b35dfd3e6c659e3bdf2fd6e4dd8b0e5b;hb=0ed8d3b659c714c617fa211f32f34879c5b224f0;hpb=833045455985bf452c5a4817d238444643b40bc7 diff --git a/t/76joins.t b/t/76joins.t index 92e5785..101d71f 100644 --- a/t/76joins.t +++ b/t/76joins.t @@ -247,11 +247,7 @@ $cd = $schema->resultset('CD')->find(1, { prefetch => { cd_to_producer => 'produ is($cd->producers->first->name, 'Matt S Trout', 'many_to_many accessor ok'); -TODO: { - local $TODO = 'use prefetched values for many_to_many accessor'; - - is($queries, 1, 'many_to_many accessor with nested prefetch ran exactly 1 query'); -} +is($queries, 1, 'many_to_many accessor with nested prefetch ran exactly 1 query'); $queries = 0;