Skip to content

Commit

Permalink
more consistent var name in test
Browse files Browse the repository at this point in the history
  • Loading branch information
onionpancakes committed Feb 19, 2024
1 parent 5663930 commit e1bbb05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/dev/onionpancakes/chassis/tests/test_compiler.clj
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
[c/doctype-html5 [:div "foo" c/nbsp "bar"]]))

(deftest test-compile-full-compaction
(are [value] (let [ret (cc/compile value)]
(are [node] (let [ret (cc/compile node)]
(and (instance? dev.onionpancakes.chassis.core.RawString ret)
(= (c/fragment ret) (c/html value))))
(= (c/fragment ret) (c/html node))))
nil
""
[:div]
Expand Down

0 comments on commit e1bbb05

Please sign in to comment.