Skip to content

Commit

Permalink
fix make bench
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchambers committed May 8, 2014
1 parent 5dc9180 commit f6a40d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/suite.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Suites.prototype.add = function(name, fileName, options) {
if (!filterRe.test(name)) {
return;
}
markup = fs.readFileSync(path.join(documentDir, fileName));
markup = fs.readFileSync(path.join(documentDir, fileName), 'utf8');
suite = new Benchmark.Suite(name);
testFn = options.test;

Expand Down

0 comments on commit f6a40d6

Please sign in to comment.