Committed by Greg Sabino Mullane <[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

Reply via email to