diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-02 16:37:43 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-02 16:37:43 -0800 |
commit | a5fa2d573185bcc565da89effcfbfdc2967ef939 (patch) | |
tree | 9a1b39839b89c49df4832a1180e2360bd3a1604d /runtests.pl | |
parent | f4702fd1d57273b86d0510ce14c6db1a5372f4b4 (diff) | |
parent | 175af415b76ad051cb08f2a307fce21e5a07482d (diff) |
Merge pull request #178 from jmendeth/patch-1
Typo in runtests.pl
Diffstat (limited to 'runtests.pl')
-rw-r--r-- | runtests.pl | 2 |
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/\'/'/; + $actual =~ s/\'/'/g; if ($actual eq $html) { print colored("✓", "green"); |