aboutsummaryrefslogtreecommitdiff
path: root/test/projectile-test.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.dev>2026-02-14 23:50:37 +0200
committerBozhidar Batsov <bozhidar@batsov.dev>2026-02-14 23:50:37 +0200
commit0484b44ff90e762bbf50894489a4e3c62316caf0 (patch)
tree81be6911078995bf7b6ee54c91312c2d63cb2cf0 /test/projectile-test.el
parent18116c346e9a2b60f39507bde3c897be5660185c (diff)
Replace cl-lib sequence functions with seq.el equivalents
Migrate cl-remove-if-not → seq-filter, cl-remove-if → seq-remove, cl-some → seq-some, cl-every → seq-every-p, cl-find-if → seq-find, cl-mapcan → mapcan, cl-union → seq-union, cl-sort → seq-sort, cl-case → pcase, and delete projectile-difference in favor of seq-difference. Manual replacements for cl-notany, cl-typep, cl-incf, cl-remove, and cl-subst. cl-lib is still required for cl-defun, cl-defmethod, cl-loop, cl-letf, and cl-flet*.
Diffstat (limited to 'test/projectile-test.el')
-rw-r--r--test/projectile-test.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/projectile-test.el b/test/projectile-test.el
index 2c97762..d896ba3 100644
--- a/test/projectile-test.el
+++ b/test/projectile-test.el
@@ -1064,7 +1064,7 @@ Just delegates OPERATION and ARGS for all operations except for`shell-command`'.
(projectile-grep "hi")))
(expect 'compilation-start :to-have-been-called-with
(concat "-type d \\( -path \\*/IG_DIR \\) -prune -o "
- "\\! -type d \\( -name IG_FILE -o -name \\*IG_SUF \\) -prune -o "
+ "\\! -type d \\( -name \\*IG_SUF -o -name IG_FILE \\) -prune -o "
"\\( -path ./GLOB_IG_DIR -o -path ./GLOB_IG_FILE \\) -prune -o ")
'grep-mode))))
(it "excludes project ignores"