emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org c6bbde4c78: test-org-ctags: Fix CI failures


From: ELPA Syncer
Subject: [elpa] externals/org c6bbde4c78: test-org-ctags: Fix CI failures
Date: Tue, 30 Apr 2024 09:58:44 -0400 (EDT)

branch: externals/org
commit c6bbde4c78559379d05a42d01da0405ef5e5710e
Author: Max Nikulin <manikulin@gmail.com>
Commit: Ihor Radchenko <yantar92@posteo.net>

    test-org-ctags: Fix CI failures
    
    * testing/lisp/test-org-ctags.el (test-org-ctags/with-fake-ctags): Do
    not use function name not compatible with dash.
---
 testing/lisp/test-org-ctags.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/testing/lisp/test-org-ctags.el b/testing/lisp/test-org-ctags.el
index 7f5fca9483..b8e3e4d223 100644
--- a/testing/lisp/test-org-ctags.el
+++ b/testing/lisp/test-org-ctags.el
@@ -76,17 +76,17 @@ Create a buffer backed by a file in the TEMP-DIR/SUBDIR 
directory."
             (,dir (concat ,base "/" ,subdir))
             (,temp-file (concat ,dir "/ctags.txt"))
             (org-ctags-path-to-ctags
-             (test-org-ctags/mock-command ,temp-file "ctags-mock"))
+             (test-org-ctags/mock-command ,temp-file "ctags_mock"))
             ,buffer)
        (make-directory ,dir)
        (unwind-protect
            ;; `org-ctags' commands call `buffer-file-name'.
            (with-current-buffer
                (setq ,buffer (find-file-noselect ,temp-file))
-             (insert "Sould be overwritten by org-ctags mock script")
+             (insert "Should be overwritten by org-ctags mock script")
              (save-buffer)
              ,@body
-             (test-org-ctags/get-args ,temp-file ,base "ctags-mock\n"))
+             (test-org-ctags/get-args ,temp-file ,base "ctags_mock\n"))
          (kill-buffer ,buffer)
          (delete-file ,temp-file)
          (delete-directory ,dir)))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]