Skip to content

Commit 33df2fe

Browse files
committed
Devel-PPPort: improve ppptest test reporting
A change I made caused this to fail, tracking it down was rough.
1 parent eb36027 commit 33df2fe

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

dist/Devel-PPPort/parts/inc/ppphtest

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -728,11 +728,14 @@ for (@o) {
728728
ok(@o > 100);
729729
is($fail, 0);
730730

731-
ok(exists $p{utf8_distance});
732-
is($p{utf8_distance}, '5.6.0');
733-
734-
ok(exists $p{save_generic_svref});
735-
is($p{save_generic_svref}, '5.005_03');
731+
ok(exists $p{utf8_distance},
732+
"found API utf8_distance");
733+
is($p{utf8_distance}, '5.6.0',
734+
"utf8_distance introduced in 5.6.0");
735+
736+
ok(exists $p{save_generic_svref}, "found API save_generic_svref");
737+
is($p{save_generic_svref}, '5.005_03',
738+
"save_generic_svref introduced in 5.005_03");
736739

737740
===============================================================================
738741

0 commit comments

Comments
 (0)