Skip to content

Commit 975b193

Browse files
committed
Replace usages of seq-contains in the tests
1 parent 2dff894 commit 975b193

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cider-font-lock-tests.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
(seq-every-p (lambda (target-face)
4747
(or (eq face target-face)
4848
(when (consp target-face)
49-
(seq-contains target-face face))))
49+
(member face target-face))))
5050
all-faces)))
5151

5252
(defun cider--face-exists-in-range-p (start end face)
@@ -56,7 +56,7 @@
5656
(seq-some (lambda (target-face)
5757
(or (eq face target-face)
5858
(when (consp target-face)
59-
(seq-contains target-face face))))
59+
(member face target-face))))
6060
all-faces)))
6161

6262
;; Tests

0 commit comments

Comments
 (0)