X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F06order_by.t;h=00a83cd8a625d9bedcd6adc727a723b1131ae5cc;hb=0f87e4f02aced2fbbc19043b459f0a6256f1436d;hp=2b3b13f59fee1433e41d619948fbad62f24ceab2;hpb=36e3ea6ca294fa0c1a32cefa39ec23146498faf0;p=dbsrgits%2FSQL-Abstract.git diff --git a/t/06order_by.t b/t/06order_by.t index 2b3b13f..00a83cd 100644 --- a/t/06order_by.t +++ b/t/06order_by.t @@ -105,7 +105,7 @@ my @cases = bind => [qw/test tost/], }, { - given => [ { -asc => 'colA', -nulls => 'first' }, { -desc => 'colB', -nulls => 'last' } ], + given => [ { -ASC => 'colA', -NULLS => 'FIRST' }, { -DESC => 'colB', -NULLS => 'LAST' } ], expects => ' ORDER BY colA NULLS FIRST, colB DESC NULLS LAST', expects_quoted => ' ORDER BY `colA` NULLS FIRST, `colB` DESC NULLS LAST', },