Skip to content

Commit 328b4bf

Browse files
committed
* typos
1 parent bd113c6 commit 328b4bf

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/test/cljs/cljs/var_test.cljs

+3-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
;; You must not remove this notice, or any other, from this software.
88

99
(ns cljs.var-test
10-
(:require [cljs.test :refer-macros [deftest is]]))
10+
(:require [cljs.test :refer-macros [deftest is testing]]))
1111

1212
(defn cljs-3411-function
1313
"this function adds two numbers"
@@ -18,6 +18,5 @@
1818

1919
(deftest cljs-3411
2020
(testing "cljs.core/test respects docstring"
21-
(is (= :ok (test cljs-3411)))
22-
;(is (= :ok (test #'cljs-3411)))
23-
))
21+
(is (= :ok (test cljs-3411-function)))
22+
(is (= :ok (test #'cljs-3411-function)))))

0 commit comments

Comments
 (0)