Skip to content

Commit

Permalink
Revert "Test cljr GitHub Action failure using X:test"
Browse files Browse the repository at this point in the history
This reverts commit d939147.
  • Loading branch information
brandoncorrea committed Oct 27, 2024
1 parent d939147 commit 64953ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
key: cljdeps-${{ hashFiles('project.clj') }}
restore-keys: cljdeps-

# - name: Run clj and cljs tests
# run: lein test-all
- name: Run clj and cljs tests
run: lein test-all

- name: Run cljr tests
run: cljr -X:test
2 changes: 1 addition & 1 deletion test/medley/core_test.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
(is (= (transduce (m/find-first even?) + 0 [7 3 3 7 3]) 0))))

(deftest test-dissoc-in
(is (= (m/dissoc-in {} [:a :b :c])
(is (= (m/dissoc-in {:a {:b {:c 1 :d 2}}} [:a :b :c])
{:a {:b {:d 2}}}))
(is (= (m/dissoc-in {:a {:b {:c 1}}} [:a :b :c])
{}))
Expand Down

0 comments on commit 64953ac

Please sign in to comment.