Fix text case on some tests

This commit is contained in:
Juho Teperi 2017-10-12 16:15:12 +03:00
parent 6dc26c9cf0
commit 47e386d49d
1 changed files with 2 additions and 2 deletions

View File

@ -288,10 +288,10 @@
;; (is (not (re-find #"enctype"
;; (as-string [:div {"enc-type" "x"}])))
;; "Strings are passed through to React.")
(is (re-find #"enctype"
(is (re-find #"encType"
(as-string [:div {"encType" "x"}]))
"Strings are passed through to React, and have to be camelcase.")
(is (re-find #"enctype"
(is (re-find #"encType"
(as-string [:div {:enc-type "x"}]))
"Strings are passed through to React, and have to be camelcase."))