From 47e386d49d6805d12f6fa7f199492bd0dfaa3d55 Mon Sep 17 00:00:00 2001 From: Juho Teperi Date: Thu, 12 Oct 2017 16:15:12 +0300 Subject: [PATCH] Fix text case on some tests --- test/reagenttest/testreagent.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/reagenttest/testreagent.cljs b/test/reagenttest/testreagent.cljs index 617e8d4..d01a59a 100644 --- a/test/reagenttest/testreagent.cljs +++ b/test/reagenttest/testreagent.cljs @@ -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."))