In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/8abe6e1a76dd79b3948879a75933683b5401ec6b?hp=2099df82093c659627a40a9adc09512848617d96>
- Log ----------------------------------------------------------------- commit 8abe6e1a76dd79b3948879a75933683b5401ec6b Author: Vitali Peil <[email protected]> Date: Mon Jun 26 19:03:01 2017 -0400 Add test descriptions for some tests in t/base/translate.t. This partially resolves RT # 131655. Vitali Peil is now a Perl author. ----------------------------------------------------------------------- Summary of changes: AUTHORS | 1 + t/base/translate.t | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 7fdb6948c5..7abfbb8087 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1251,6 +1251,7 @@ Viktor Turskyi <[email protected]> Ville Skyttä <[email protected]> Vincent Pit <[email protected]> Vishal Bhatia <[email protected]> +Vitali Peil <[email protected]> Vlad Harchev <[email protected]> Vladimir Alexiev <[email protected]> Vladimir Marek <[email protected]> diff --git a/t/base/translate.t b/t/base/translate.t index 614f22c9c6..e471eb8e63 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"; -- Perl5 Master Repository
