summaryrefslogtreecommitdiffstats
path: root/tasks/test.js
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2014-01-19 19:20:55 -0600
committerkpdecker <kpdecker@gmail.com>2014-01-20 00:55:53 -0600
commit8f07bbabeabaed5d8100261b952c9de07fad7a8c (patch)
tree9d840d5af6f4281c86b67f1b8b2fb46822a91ff7 /tasks/test.js
parent4679b1d9314a022ad305bab9e6cfed66088428b9 (diff)
downloadhandlebars.js-8f07bbabeabaed5d8100261b952c9de07fad7a8c.zip
handlebars.js-8f07bbabeabaed5d8100261b952c9de07fad7a8c.tar.gz
handlebars.js-8f07bbabeabaed5d8100261b952c9de07fad7a8c.tar.bz2
Add quotes to exception
Diffstat (limited to 'tasks/test.js')
-rw-r--r--tasks/test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/test.js b/tasks/test.js
index b3f2056..664af60 100644
--- a/tasks/test.js
+++ b/tasks/test.js
@@ -12,7 +12,7 @@ module.exports = function(grunt) {
var expected = fs.readFileSync('./spec/expected/empty.amd.js');
if (stdout.toString() !== expected.toString()) {
- throw new Error('Expected binary output differed:\n\n' + stdout + '\n\n' + expected);
+ throw new Error('Expected binary output differed:\n\n"' + stdout + '"\n\n"' + expected + '"');
}
done();