X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Frun%2F16joins.tl;h=49ecbcfe6f7373f71b986fea898214456e79af72;hb=9b465d002d544e25ae5756304c4ea59577aca363;hp=091cf7464ad2b2160ddd55b5e227544c2d675192;hpb=9574e7cc118caddd8bcd628881bde8e7763b3322;p=dbsrgits%2FDBIx-Class.git diff --git a/t/run/16joins.tl b/t/run/16joins.tl index 091cf74..49ecbcf 100644 --- a/t/run/16joins.tl +++ b/t/run/16joins.tl @@ -144,10 +144,10 @@ $trace->close; unlink 't/var/dbic.trace'; is($selects, 1, 'prefetch ran only 1 select statement'); -# test for partial prefetch via cols attr +# test for partial prefetch via columns attr my $cd = $schema->resultset('CD')->find(1, { - cols => [qw/title artist.name/], + columns => [qw/title artist.name/], join => { 'artist' => {} } } );