diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-11 05:29:12 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-11 05:29:12 +0000 |
commit | 38295cca2bcea18247fdba079ba504a69c9fda94 (patch) | |
tree | c4cda2ffca4a544957133f183e5471d0ee507443 /t | |
parent | bb4e15c885adf67b857fe3eac0488b3b9685b93d (diff) | |
download | perl-38295cca2bcea18247fdba079ba504a69c9fda94.tar.gz |
A rejected hunk of #18902 reapplied.
p4raw-id: //depot/perl@18903
Diffstat (limited to 't')
-rwxr-xr-x | t/io/utf8.t | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/t/io/utf8.t b/t/io/utf8.t index e5005e5d64..c7ad296d8d 100755 --- a/t/io/utf8.t +++ b/t/io/utf8.t @@ -291,8 +291,7 @@ ok( 1 ); utf8::upgrade($s) if $v->[1] eq "utf8"; $s .= <F>; - print $s eq chr($v->[0]) . chr($u->[0]) ? - "ok $t # rcatline utf8\n" : "not ok $t # rcatline utf8\n"; + ok( $s eq chr($v->[0]) . chr($u->[0]), 'rcatline utf8' ); close F; $t++; } |