Skip to content

Commit 9638bbf

Browse files
committed
Fix typos in test docstrings
1 parent 89fa56a commit 9638bbf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/re_frame/subs_test.cljs

+3-3
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
(is (= {:a [1 :c] :b [2 :c]} @test-sub))))
221221

222222
(deftest test-sub-macros-<-
223-
"test the syntactial sugar"
223+
"test the syntactical sugar"
224224
(subs/reg-sub
225225
:a-sub
226226
(fn [db [_]] (:a db)))
@@ -235,7 +235,7 @@
235235
(is (= {:a 1} @test-sub))))
236236

237237
(deftest test-sub-macros-chained-parameters-<-
238-
"test the syntactial sugar"
238+
"test the syntactical sugar"
239239
(subs/reg-sub
240240
:a-sub
241241
(fn [db [_]] (:a db)))
@@ -252,7 +252,7 @@
252252

253253
(let [test-sub (subs/subscribe [:a-b-sub :c])]
254254
(reset! db/app-db {:a 1 :b 2})
255-
(is (= {:a 1 :b 2} @test-sub) )))
255+
(is (= {:a 1 :b 2} @test-sub))))
256256

257257
(deftest test-registering-subs-doesnt-create-subscription
258258
(let [sub-called? (atom false)]

0 commit comments

Comments
 (0)