[DBD::Pg] Yes, it's all utf-8 now.

dbdpg-commits-gENoVmVU/[email protected] Thu, 5 Sep 2013 21:33:43 -0400
Newsgroups gmane.comp.db.postgresql.dbdpg.cvs
Message-ID <[email protected]>
Committed by Greg Sabino Mullane <greg-O9fzpki4YnJWk0Htik3J/[email protected]>

Yes, it's all utf-8 now.

---
 t/09arrays.t |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/t/09arrays.t b/t/09arrays.t
index e8ed291..1b917c8 100644
--- a/t/09arrays.t
+++ b/t/09arrays.t
@@ -588,8 +588,8 @@ SKIP: {
 	$expected = [1,['Bob',$utf8_str],'one'];
 	is_deeply ($result, $expected, $t);
 
-	$t='Selected ASCII string should not be UTF-8';
-    ok (!Encode::is_utf8( $result->[1][0] ), $t);
+	$t='Selected ASCII string should be UTF-8';
+    ok (Encode::is_utf8( $result->[1][0] ), $t);
 
 	$t='Selected string should be UTF-8';
     ok (Encode::is_utf8( $result->[1][1] ), $t);
-- 
1.7.1