diff options
Diffstat (limited to 'runtests.pl')
-rw-r--r-- | runtests.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtests.pl b/runtests.pl index f3e91ca..0bff360 100644 --- a/runtests.pl +++ b/runtests.pl @@ -51,6 +51,7 @@ sub tidy s/ */ /; # collapse space before /> in tag s/ *\/>/\/>/; + s/>\n$/>/; # skip blank line if (/^$/) { next; @@ -93,8 +94,10 @@ sub dotest print $markdown; print "=== expected ===============\n"; print $html; + print "\n"; print "=== got ====================\n"; print $actual; + print "\n"; print color "black"; return 0; } |