diff options
author | Vicent Marti <tanoku@gmail.com> | 2014-09-04 17:26:11 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2014-09-09 03:39:15 +0200 |
commit | 45c1d9fadb3e8aab4a01bb27a4e2ece379902d1a (patch) | |
tree | f45f676f6f92ec6df673b90767fa72e90b0c7a21 /runtests.pl | |
parent | 28be4a59c940bd55ed4fef668091d52638925c3c (diff) |
426/15
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 2e2b795..e53938d 100644 --- a/runtests.pl +++ b/runtests.pl @@ -49,6 +49,7 @@ sub tidy s/ */ /; # collapse space before /> in tag s/ *\/>/\/>/; + s/>\n$/>/; # skip blank line if (/^$/) { next; @@ -89,8 +90,10 @@ sub dotest print $markdown; print "=== expected ===============\n"; print $html; + print "\n"; print "=== got ====================\n"; print $actual; + print "\n"; print color "black"; return 0; } |