summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-03-11 05:29:12 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-03-11 05:29:12 +0000
commit38295cca2bcea18247fdba079ba504a69c9fda94 (patch)
treec4cda2ffca4a544957133f183e5471d0ee507443 /t
parentbb4e15c885adf67b857fe3eac0488b3b9685b93d (diff)
downloadperl-38295cca2bcea18247fdba079ba504a69c9fda94.tar.gz
A rejected hunk of #18902 reapplied.
p4raw-id: //depot/perl@18903
Diffstat (limited to 't')
-rwxr-xr-xt/io/utf8.t3
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++;
}