From 8abe6e1a76dd79b3948879a75933683b5401ec6b Mon Sep 17 00:00:00 2001 From: Vitali Peil Date: Mon, 26 Jun 2017 19:03:01 -0400 Subject: [PATCH] Add test descriptions for some tests in t/base/translate.t. This partially resolves RT # 131655. Vitali Peil is now a Perl author. --- AUTHORS | 1 + t/base/translate.t | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 7fdb6948c519..7abfbb808785 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1251,6 +1251,7 @@ Viktor Turskyi Ville Skyttä Vincent Pit Vishal Bhatia +Vitali Peil Vlad Harchev Vladimir Alexiev Vladimir Marek diff --git a/t/base/translate.t b/t/base/translate.t index 614f22c9c6b6..e471eb8e6323 100644 --- a/t/base/translate.t +++ b/t/base/translate.t @@ -14,7 +14,7 @@ for my $i (0 .. 255) { print "not "; } print "ok "; - print $i + 1; + print $i + 1 . " - native_to_unicode $i"; print "\n"; } @@ -23,5 +23,4 @@ for my $i (0 .. 255) { if (utf8::unicode_to_native(utf8::native_to_unicode(100000)) != 100000) { print "not "; } -print "ok "; -print "257\n"; +print "ok 257 - native_to_unicode of large number\n";