Skip to content

Commit

Permalink
Replace calls to non existing functions
Browse files Browse the repository at this point in the history
  • Loading branch information
John-Goff authored and oubiwann committed Feb 19, 2024
1 parent 54aea8c commit a24bd76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ltest-util.lfe
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
exports))

(defun filtered (func beams)
(lists:filter-files
(lists:filter
(lambda (x) (=/= x 'false))
(funcall func beams)))

Expand Down
4 changes: 2 additions & 2 deletions src/ltest.lfe
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@
funcs))

(defun get-skip-funcs (module)
(ltest-util:filter-files
(lists:filter
#'check-skip-funcs/1
(ltest-util:get-module-exports module)))

(defun get-skipped-tests (module)
(ltest-util:filter-files
(lists:filter
#'check-skipped-tests/1
(ltest-util:get-module-exports module)))

Expand Down

0 comments on commit a24bd76

Please sign in to comment.