change code assertion to 6to5 output

This commit is contained in:
Sebastian McKenzie 2015-01-04 08:01:29 +11:00
parent 4506e39cf5
commit dea73b7186

View File

@ -1,5 +1,5 @@
var dynamicThisGetter = () => function(){ return this; }; var dynamicThisGetter = () => function () { return this; };
assert.equal( assert.equal(
normalize('('+dynamicThisGetter.toString()+')'), '(' + dynamicThisGetter.toString() + ')',
normalize('(function(){ return function(){ return this; }; })') '(function () {\n return function () {\n return this;\n };\n})'
); );