Fix encoding in |fs.readFileSync| calls ("utf-8" -> "utf8")

redux
David Majda 14 years ago
parent d0c074e2f8
commit 8f005c027b

@ -105,7 +105,7 @@ sys.puts("");
Runner.run(benchmarks, runCount, { Runner.run(benchmarks, runCount, {
readFile: function(file) { readFile: function(file) {
return fs.readFileSync(file, "utf-8"); return fs.readFileSync(file, "utf8");
}, },
testStart: function(benchmark, test) { testStart: function(benchmark, test) {

@ -81,7 +81,7 @@ QUnit.done = function(details) {
"passes-test.js", "passes-test.js",
"compiler-test.js", "compiler-test.js",
].forEach(function(file) { ].forEach(function(file) {
eval("with (QUnit) {" + fs.readFileSync(file, "utf-8") + "}"); eval("with (QUnit) {" + fs.readFileSync(file, "utf8") + "}");
}); });
QUnit.start(); QUnit.start();

Loading…
Cancel
Save