From: Arthur Axel "fREW" Schmidt Date: Thu, 11 Feb 2010 10:55:41 +0000 (+0000) Subject: fix a test due to ordering issues X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b773093f20159bd67b86e3133eda3cff7d34216f;p=dbsrgits%2FDBIx-Class-Historic.git fix a test due to ordering issues --- diff --git a/t/search/select_chains.t b/t/search/select_chains.t index aa428cc..0e90a56 100644 --- a/t/search/select_chains.t +++ b/t/search/select_chains.t @@ -23,7 +23,7 @@ my @chain = ( '+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 @@ while (@chain) { $testno++; } -done_testing; \ No newline at end of file +done_testing;