cosmetic
Prog Rammer [Mon, 27 Aug 2012 20:16:29 +0000 (15:16 -0500)]
t/expr-helpers.t

index a64c9f3..5d413b5 100644 (file)
@@ -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';