Skip to content

Commit fbffe95

Browse files
cichlibbatsov
authored andcommitted
Fix typos
1 parent 069d6cd commit fbffe95

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/clj/cider/nrepl/middleware/trace_test.clj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@
1919
(is (= {:var-status "not-found" :status #{:toggle-trace-error :done}}
2020
(toggle-trace-var {:ns "clojure.core" :sym "mappp"}))))
2121

22-
(testing "toogle-trace-var-op not traceable var, should return `not-traceable`"
22+
(testing "toggle-trace-var-op not traceable var, should return `not-traceable`"
2323
(is (= {:var-name "#'clojure.core/and" :var-status "not-traceable"}
2424
(toggle-trace-var {:ns "clojure.core" :sym "and"}))))))
2525

2626
(deftest toggle-trace-ns-test
27-
(testing "toogling"
27+
(testing "toggling"
2828
(is (= {:ns-status "traced"}
2929
(toggle-trace-ns {:ns "clojure.core"})))
3030
(is (= {:ns-status "untraced"}
3131
(toggle-trace-ns {:ns "clojure.core"}))))
3232

33-
(testing "toogle-trace-ns-op missing ns should return `not-found`"
33+
(testing "toggle-trace-ns-op missing ns should return `not-found`"
3434
(is (= {:ns-status "not-found"}
3535
(toggle-trace-ns {:ns "clojure.corex"})))))
3636

0 commit comments

Comments
 (0)