remove parens from test, they do not matter
Justin Hunter [Fri, 24 Apr 2009 16:52:50 +0000 (16:52 +0000)]
t/04modifiers.t

index f4a0f1d..b365443 100644 (file)
@@ -146,7 +146,7 @@ my @and_or_tests = (
   # test column multi-cond in arrayref (even more useful)
   {
     where => { x => { '!=' => [ -and => (1 .. 3) ] } },
-    stmt => 'WHERE ( ( x != ? AND x != ? AND x != ? ) )',
+    stmt => 'WHERE x != ? AND x != ? AND x != ?',
     bind => [1..3],
   },