X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F06order_by.t;h=d92456929e693545fbe185ff86cc6fdc56b7954f;hb=b137b0744a3aaea3df1ba497345378e9d3f8da40;hp=f0fb47ea3fba3eef47d001337d8cf086fd5e0a24;hpb=2266ca5c0bf34c24ba7fbf6448ad1c34a082f240;p=scpubgit%2FQ-Branch.git diff --git a/t/06order_by.t b/t/06order_by.t index f0fb47e..d924569 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 ASC NULLS FIRST, colB DESC NULLS LAST', expects_quoted => ' ORDER BY `colA` ASC NULLS FIRST, `colB` DESC NULLS LAST', },