From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Tue, 11 Mar 2003 05:29:12 +0000 (+0000)
Subject: A rejected hunk of #18902 reapplied.
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=38295cca2bcea18247fdba079ba504a69c9fda94;p=p5sagit%2Fp5-mst-13.2.git

A rejected hunk of #18902 reapplied.

p4raw-id: //depot/perl@18903
---

diff --git a/t/io/utf8.t b/t/io/utf8.t
index e5005e5..c7ad296 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++;
 	}