From: Justin Hunter Date: Fri, 24 Apr 2009 16:52:50 +0000 (+0000) Subject: remove parens from test, they do not matter X-Git-Tag: v1.70~169^2~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6f750add31d22b3b20e6ed571a4e7490704a1913;p=dbsrgits%2FSQL-Abstract.git remove parens from test, they do not matter --- diff --git a/t/04modifiers.t b/t/04modifiers.t index f4a0f1d..b365443 100644 --- a/t/04modifiers.t +++ b/t/04modifiers.t @@ -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], },