From: Prog Rammer Date: Mon, 27 Aug 2012 20:16:29 +0000 (-0500) Subject: cosmetic X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ef8575b450931944ac6050adb0cd4feb5fd0b6db;p=dbsrgits%2FData-Query.git cosmetic --- diff --git a/t/expr-helpers.t b/t/expr-helpers.t index a64c9f3..5d413b5 100644 --- a/t/expr-helpers.t +++ b/t/expr-helpers.t @@ -91,9 +91,9 @@ dq_sql_is Where( Operator({ 'SQL.Naive' => 'BETWEEN' }, [ Identifier('x'), - map Literal('SQL', '?', [ binding($_) ]), (1,2), + map Literal('SQL', '?', [ binding($_) ]), 1, 2 ]), Select([ Identifier('*') ], Identifier('foo')), ), - [ 'SELECT * FROM foo WHERE ( x BETWEEN ? AND ? )', map binding($_), 1, 2, ], + [ 'SELECT * FROM foo WHERE ( x BETWEEN ? AND ? )', map binding($_), 1, 2 ], 'between';