summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-02 16:37:43 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-02 16:37:43 -0800
commita5fa2d573185bcc565da89effcfbfdc2967ef939 (patch)
tree9a1b39839b89c49df4832a1180e2360bd3a1604d
parentf4702fd1d57273b86d0510ce14c6db1a5372f4b4 (diff)
parent175af415b76ad051cb08f2a307fce21e5a07482d (diff)
Merge pull request #178 from jmendeth/patch-1
Typo in runtests.pl
-rw-r--r--runtests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtests.pl b/runtests.pl
index 0bff360..ae1195e 100644
--- a/runtests.pl
+++ b/runtests.pl
@@ -81,7 +81,7 @@ sub dotest
waitpid($pid, 0);
$html = &tidy($html);
$actual = &tidy($actual);
- $actual =~ s/\&#39;/'/;
+ $actual =~ s/\&#39;/'/g;
if ($actual eq $html) {
print colored("✓", "green");