[Bast-commits] r8619 - DBIx-Class/0.08/branches/chaining_fixes/t

frew at dev.catalyst.perl.org frew at dev.catalyst.perl.org
Thu Feb 11 10:53:50 GMT 2010


Author: frew
Date: 2010-02-11 10:53:50 +0000 (Thu, 11 Feb 2010)
New Revision: 8619

Modified:
   DBIx-Class/0.08/branches/chaining_fixes/t/76select.t
Log:
fix incorrect test

Modified: DBIx-Class/0.08/branches/chaining_fixes/t/76select.t
===================================================================
--- DBIx-Class/0.08/branches/chaining_fixes/t/76select.t	2010-02-11 10:46:58 UTC (rev 8618)
+++ DBIx-Class/0.08/branches/chaining_fixes/t/76select.t	2010-02-11 10:53:50 UTC (rev 8619)
@@ -145,7 +145,7 @@
   'limited prefetch via column works on a multi-relationship',
 );
 
-my $sub_rs = $rs->search ({},
+$sub_rs = $rs->search ({},
   {
     columns => [qw/artist tracks.trackid/],    # columns should not be merged but override $rs columns
     '+select' => ['tracks.title'],
@@ -157,7 +157,6 @@
   $sub_rs->single,
   {
     artist         => 1,
-    track_position => 2,
     tracks => {
       title => 'Apiary',
       trackid => 17,




More information about the Bast-commits mailing list