From: Peter Rabbitson Date: Thu, 23 Apr 2009 22:16:41 +0000 (+0000) Subject: Strip some parenthesis for easier reading X-Git-Tag: v1.70~169^2~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=25e4c69385e46884d50f89d5faada6ef1015aa1b;hp=643858317a9e94e95ac723531c62e9370e07d762;p=dbsrgits%2FSQL-Abstract.git Strip some parenthesis for easier reading --- diff --git a/t/04modifiers.t b/t/04modifiers.t index 5be3098..b365443 100644 --- a/t/04modifiers.t +++ b/t/04modifiers.t @@ -155,7 +155,7 @@ my @and_or_tests = ( where => { x => { -or => { '!=', 1, '>=', 2 }, -like => 'x%' }}, - stmt => 'WHERE ( ( x LIKE ? AND ( x != ? OR x >= ? ) ) )', + stmt => 'WHERE x LIKE ? AND ( x != ? OR x >= ? )', bind => [qw/x% 1 2/], },