Skip to content

Commit 749ba99

Browse files
committed
Fix tests for CLJS
1 parent f077be0 commit 749ba99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cljc/hickory/test/core.cljc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
(is (= {:type :document,
1818
:content [{:type :document-type,
1919
:attrs {:name "html", :publicid "", :systemid ""
20-
:#doctype "html"}}
20+
#?@(:clj [:#doctype "html"])}}
2121
{:type :element,
2222
:attrs nil,
2323
:tag :html,
@@ -59,7 +59,7 @@
5959
(is (= {:type :document,
6060
:content [{:type :document-type,
6161
:attrs {:name "html", :publicid "", :systemid ""
62-
:#doctype "html"}}
62+
#?@(:clj [:#doctype "html"])}}
6363
{:type :element,
6464
:attrs nil,
6565
:tag :html,

0 commit comments

Comments
 (0)