summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2016-12-11 17:31:59 -0700
committerKarl Williamson <khw@cpan.org>2016-12-14 10:52:48 -0700
commit4ad939dc58c4df7fb3da094e746fe5e6b451d46e (patch)
tree4ef18cc56b3085d85f43110962c058b3433687e4
parent2956ebbf188798d071074786c857fb2abf53642b (diff)
downloadperl-4ad939dc58c4df7fb3da094e746fe5e6b451d46e.tar.gz
APItest/t/utf8.t: Fix test name
This test name gave the wrong function being tested.
-rw-r--r--ext/XS-APItest/t/utf8.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/XS-APItest/t/utf8.t b/ext/XS-APItest/t/utf8.t
index c221b89c5b..05693c05a4 100644
--- a/ext/XS-APItest/t/utf8.t
+++ b/ext/XS-APItest/t/utf8.t
@@ -1443,7 +1443,8 @@ foreach my $test (@malformations) {
$ret = test_isUTF8_CHAR_flags($bytes, $length, 0);
is($ret, 0, "$testname: isUTF8_CHAR_flags returns 0");
- is(scalar @warnings, 0, "$testname: isUTF8_CHAR() generated no warnings")
+ is(scalar @warnings, 0, "$testname: isUTF8_CHAR_flags() generated no"
+ . " warnings")
or output_warnings(@warnings);
$ret = test_isSTRICT_UTF8_CHAR($bytes, $length);