`
(deftest test-34-unify-with-metadata
  (is (run* [q]
        (== q (quote ^:haz-meta-daytuhs (form form form))))
  '((^:haz-meta-daytuhs (form form form)))))
`
I am not sure what was intended for this, but replacing it with the following causes the test to fail.
`
(deftest test-34-unify-with-metadata
  (is (= (run* [q]
           (== q (quote ^:haz-meta-daytuhs (form form form))))
     '((^:haz-meta-daytuhs (form form form))))))
`
I think the correct version is probably close to that, though.