Add quotes to exception

This commit is contained in:
kpdecker
2014-01-19 19:20:55 -06:00
parent 4679b1d931
commit 8f07bbabea
+1 -1
View File
@@ -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();