Author: turnstep
Date: Wed Jul 15 14:07:28 2009
New Revision: 13064

Modified:
   DBD-Pg/trunk/t/12placeholders.t

Log:
Allow more in string matching.


Modified: DBD-Pg/trunk/t/12placeholders.t
==============================================================================
--- DBD-Pg/trunk/t/12placeholders.t     (original)
+++ DBD-Pg/trunk/t/12placeholders.t     Wed Jul 15 14:07:28 2009
@@ -354,7 +354,7 @@
        $t = "$prefix (value=$float)";
        $val = -1;
        eval { $val = $dbh->quote($float, SQL_FLOAT); };
-       like ($@, qr{Invalid number}, $t);
+       like ($@, qr{Invalid number.*}, $t);
        is ($val, -1, $t);
 }
 

Reply via email to