From 2315ec89a2a1773ef558e09920fd25296fa8d740 Mon Sep 17 00:00:00 2001 From: Minas Keshishyan Date: Mon, 3 Feb 2020 13:23:05 +0400 Subject: [PATCH] fix should edit the attributes of the element test --- test/html.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/html.js b/test/html.js index b3da8ad..32bf39b 100644 --- a/test/html.js +++ b/test/html.js @@ -326,7 +326,7 @@ describe('HTML Parser', function () { root.firstChild.attributes.should.eql({ 'a': '13', }); - root.firstChild.toString().should.eql('

'); + root.firstChild.toString().should.eql('

'); }); it('should add an attribute to the element', function () { var root = parseHTML('

');