Author: turnstep
Date: Wed Jan 23 10:38:46 2008
New Revision: 10644
Modified:
DBD-Pg/trunk/t/09arrays.t
Log:
Typo.
Modified: DBD-Pg/trunk/t/09arrays.t
==============================================================================
--- DBD-Pg/trunk/t/09arrays.t (original)
+++ DBD-Pg/trunk/t/09arrays.t Wed Jan 23 10:38:46 2008
@@ -465,7 +465,7 @@
ok Encode::is_utf8( $quoted ), 'Quoted array of strings should be UTF-8';
$dbh->do('DELETE FROM dbd_pg_test');
- $SQL = q{INSERT INTO dbd_pg_test (id, testarray, val) VALUES (1,
'$quoted', 'one')};
+ $SQL = qq{INSERT INTO dbd_pg_test (id, testarray, val) VALUES (1,
'$quoted', 'one')};
eval {
$dbh->do($SQL);
};