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

frew at dev.catalyst.perl.org frew at dev.catalyst.perl.org
Thu Feb 11 10:55:41 GMT 2010


Author: frew
Date: 2010-02-11 10:55:41 +0000 (Thu, 11 Feb 2010)
New Revision: 8621

Modified:
   DBIx-Class/0.08/branches/chaining_fixes/t/search/select_chains.t
Log:
fix a test due to ordering issues

Modified: DBIx-Class/0.08/branches/chaining_fixes/t/search/select_chains.t
===================================================================
--- DBIx-Class/0.08/branches/chaining_fixes/t/search/select_chains.t	2010-02-11 10:54:49 UTC (rev 8620)
+++ DBIx-Class/0.08/branches/chaining_fixes/t/search/select_chains.t	2010-02-11 10:55:41 UTC (rev 8621)
@@ -23,7 +23,7 @@
     '+columns'  => [ { max_year => { max => 'me.year' }}, ],
     '+select'   => [ { count => 'me.cdid' }, ],
     '+as'       => [ 'cnt' ],
-  } => 'SELECT me.cdid, MAX( me.year ), LOWER( title ), me.genreid, COUNT( me.cdid ) FROM cd me',
+  } => 'SELECT me.cdid, LOWER( title ), MAX( me.year ), me.genreid, COUNT( me.cdid ) FROM cd me',
 
   {
     select      => [ { min => 'me.cdid' }, ],
@@ -58,4 +58,4 @@
   $testno++;
 }
 
-done_testing;
\ No newline at end of file
+done_testing;




More information about the Bast-commits mailing list