Skip to content

Commit 64953ac

Browse files
committed
Revert "Test cljr GitHub Action failure using X:test"
This reverts commit d939147.
1 parent d939147 commit 64953ac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
key: cljdeps-${{ hashFiles('project.clj') }}
3434
restore-keys: cljdeps-
3535

36-
# - name: Run clj and cljs tests
37-
# run: lein test-all
36+
- name: Run clj and cljs tests
37+
run: lein test-all
3838

3939
- name: Run cljr tests
4040
run: cljr -X:test

test/medley/core_test.cljc

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
(is (= (transduce (m/find-first even?) + 0 [7 3 3 7 3]) 0))))
1515

1616
(deftest test-dissoc-in
17-
(is (= (m/dissoc-in {} [:a :b :c])
17+
(is (= (m/dissoc-in {:a {:b {:c 1 :d 2}}} [:a :b :c])
1818
{:a {:b {:d 2}}}))
1919
(is (= (m/dissoc-in {:a {:b {:c 1}}} [:a :b :c])
2020
{}))

0 commit comments

Comments
 (0)