From 019fedb9cc6122dfe2b99b6299d00ef8404e06d6 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Sun, 20 Dec 2015 09:50:17 -0500 Subject: [PATCH] fix test case (for predictable attrs serialization) --- parse-html.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse-html.coffee b/parse-html.coffee index d271706..c63a42d 100644 --- a/parse-html.coffee +++ b/parse-html.coffee @@ -2282,7 +2282,7 @@ test_parser name: "open tag with attributes", \ expected: 'text:"foo",tag:"span",{"style":"foo: bar","title":"hi"},[text:"bar"]' test_parser name: "open tag with attributes of various quotings", \ html: "foobar", - expected: 'text:"foo",tag:"span",{"abc":"def","g":"hij","klm":"nopqrstuv\\"","autofocus":""},[text:"bar"]' + expected: 'text:"foo",tag:"span",{"abc":"def","autofocus":"","g":"hij","klm":"nopqrstuv\\""},[text:"bar"]' test_parser name: "attribute entity exceptions dq", \ html: "foobar", expected: 'text:"foo",tag:"a",{"href":"foo?t=1&=2&o=3<=foo"},[text:"bar"]' -- 1.7.10.4