From: Peter Rabbitson Date: Thu, 23 Apr 2009 22:16:41 +0000 (+0000) Subject: Strip some parenthesis for easier reading X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=25e4c69385e46884d50f89d5faada6ef1015aa1b;p=scpubgit%2FQ-Branch.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/], },