fixed browser tests with the new brfs version

master
Evgeny Poberezkin 2016-01-26 13:18:50 +00:00
parent 7b2b3d0a93
commit 8b8ab4b086
1 changed files with 2 additions and 2 deletions

View File

@ -4,6 +4,6 @@ var fs = require('fs')
, doT = require('dot');
module.exports = {
range: doT.compile(fs.readFileSync(__dirname + '/range.jst')),
rangeWithErrors: doT.compile(fs.readFileSync(__dirname + '/range_with_errors.jst'))
range: doT.compile(fs.readFileSync(__dirname + '/range.jst', 'utf8')),
rangeWithErrors: doT.compile(fs.readFileSync(__dirname + '/range_with_errors.jst', 'utf8'))
};