diff --git a/test/html.js b/test/html.js index 32bf39b..dd34cf4 100644 --- a/test/html.js +++ b/test/html.js @@ -300,8 +300,8 @@ describe('HTML Parser', function () { var root = parseHTML('
'); root.firstChild.rawAttributes.should.eql({ 'a': '12', - 'data-id': '"!$$&"', - 'yAz': '\'1\'' + 'data-id': '!$$&', + 'yAz': '1' }); }); }); @@ -335,7 +335,7 @@ describe('HTML Parser', function () { 'a': '12', 'b': '13', }); - root.firstChild.toString().should.eql(''); + root.firstChild.toString().should.eql(''); }); it('should remove an attribute from the element', function () { var root = parseHTML(''); @@ -344,7 +344,7 @@ describe('HTML Parser', function () { root.firstChild.attributes.should.eql({ 'a': '12', }); - root.firstChild.toString().should.eql(''); + root.firstChild.toString().should.eql(''); }); it('should keep quotes arount value', function () { var root = parseHTML('');