X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F15placeholders.t;h=f124e0317b66c3ba35020b1d219b5de12a654110;hb=170e6c33a3262ece53aa79249d9a8d1149bc4c35;hp=a82b66809c22d423a6707f35db1f139f2d54f2bf;hpb=e4570c8e06ddb929c5ae0322cb2e42ef523a6ed4;p=dbsrgits%2FSQL-Abstract.git diff --git a/t/15placeholders.t b/t/15placeholders.t index a82b668..f124e03 100644 --- a/t/15placeholders.t +++ b/t/15placeholders.t @@ -34,7 +34,7 @@ use SQL::Abstract::Tree; }); is $sqlat->format('SELECT ? as x, ? as y FROM Foo WHERE t > ? and z IN (?, ?, ?) ', [qw/frew ribasushi 2008-12-12 1 2 3/]), - q[SELECT 'frew' as x, 'ribasushi' as y FROM Foo WHERE t > '2008-12-12' AND z IN ('1', '2', '3')], 'Complex placeholders work'; + q[SELECT 'frew' as x, 'ribasushi' as y FROM Foo WHERE t > '2008-12-12' AND z IN ( '1', '2', '3' )], 'Complex placeholders work'; } done_testing;