diff options
| author | Michael Albinus | 2025-09-12 16:18:26 +0200 |
|---|---|---|
| committer | Michael Albinus | 2025-09-12 16:18:26 +0200 |
| commit | 1b4e4fda5ea3364f752b20bef0147001ae58ab97 (patch) | |
| tree | d9cae36c6288a7a5b4838ee1d2c4b7bb07ef85e3 | |
| parent | 4846ec48714171eabc51929feebe03b9603713b7 (diff) | |
| download | emacs-1b4e4fda5ea3364f752b20bef0147001ae58ab97.tar.gz emacs-1b4e4fda5ea3364f752b20bef0147001ae58ab97.zip | |
Fix last change
* test/lisp/textmodes/ispell-tests/ispell-aspell-tests.el:
* test/lisp/textmodes/ispell-tests/ispell-hunspell-tests.el:
* test/lisp/textmodes/ispell-tests/ispell-international-ispell-tests.el:
* test/lisp/textmodes/ispell-tests/ispell-tests.el: Fix load argument.
4 files changed, 5 insertions, 5 deletions
diff --git a/test/lisp/textmodes/ispell-tests/ispell-aspell-tests.el b/test/lisp/textmodes/ispell-tests/ispell-aspell-tests.el index 66451bf4548..3a442c764d9 100644 --- a/test/lisp/textmodes/ispell-tests/ispell-aspell-tests.el +++ b/test/lisp/textmodes/ispell-tests/ispell-aspell-tests.el | |||
| @@ -32,9 +32,9 @@ | |||
| 32 | (add-to-list 'load-path (when (not (null load-file-name)) | 32 | (add-to-list 'load-path (when (not (null load-file-name)) |
| 33 | (directory-file-name | 33 | (directory-file-name |
| 34 | (file-name-directory load-file-name)))) | 34 | (file-name-directory load-file-name)))) |
| 35 | (load "ispell-tests-common.el")) | 35 | (load "ispell-tests-common")) |
| 36 | 36 | ||
| 37 | (declare-function letopt (expand-file-name "test/lisp/textmodes/ispell-tests/ispell-tests-common.el" source-directory) t t) | 37 | (declare-function letopt (expand-file-name "ispell-tests-common" source-directory) t t) |
| 38 | 38 | ||
| 39 | (ert-deftest ispell/aspell/ispell-check-version/works () | 39 | (ert-deftest ispell/aspell/ispell-check-version/works () |
| 40 | "Test that aspell is correctly detected." | 40 | "Test that aspell is correctly detected." |
diff --git a/test/lisp/textmodes/ispell-tests/ispell-hunspell-tests.el b/test/lisp/textmodes/ispell-tests/ispell-hunspell-tests.el index 8b625276e28..79d7dbbc677 100644 --- a/test/lisp/textmodes/ispell-tests/ispell-hunspell-tests.el +++ b/test/lisp/textmodes/ispell-tests/ispell-hunspell-tests.el | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | (add-to-list 'load-path (when (not (null load-file-name)) | 32 | (add-to-list 'load-path (when (not (null load-file-name)) |
| 33 | (directory-file-name | 33 | (directory-file-name |
| 34 | (file-name-directory load-file-name)))) | 34 | (file-name-directory load-file-name)))) |
| 35 | (load "ispell-tests-common.el")) | 35 | (load "ispell-tests-common")) |
| 36 | 36 | ||
| 37 | (ert-deftest ispell/hunspell/ispell-word/english/check-only () | 37 | (ert-deftest ispell/hunspell/ispell-word/english/check-only () |
| 38 | "This test checks that Russian spellchecking works for Hunspell." | 38 | "This test checks that Russian spellchecking works for Hunspell." |
diff --git a/test/lisp/textmodes/ispell-tests/ispell-international-ispell-tests.el b/test/lisp/textmodes/ispell-tests/ispell-international-ispell-tests.el index 30df3a3340a..74c56de6857 100644 --- a/test/lisp/textmodes/ispell-tests/ispell-international-ispell-tests.el +++ b/test/lisp/textmodes/ispell-tests/ispell-international-ispell-tests.el | |||
| @@ -29,7 +29,7 @@ | |||
| 29 | (add-to-list 'load-path (and load-file-name | 29 | (add-to-list 'load-path (and load-file-name |
| 30 | (directory-file-name | 30 | (directory-file-name |
| 31 | (file-name-directory load-file-name)))) | 31 | (file-name-directory load-file-name)))) |
| 32 | (load "ispell-tests-common.el")) | 32 | (load "ispell-tests-common")) |
| 33 | 33 | ||
| 34 | (ert-deftest ispell/international-ispell/ispell-word/russian/check-only () | 34 | (ert-deftest ispell/international-ispell/ispell-word/russian/check-only () |
| 35 | "This test checks that Russian spellchecking works for. | 35 | "This test checks that Russian spellchecking works for. |
diff --git a/test/lisp/textmodes/ispell-tests/ispell-tests.el b/test/lisp/textmodes/ispell-tests/ispell-tests.el index b711ee59793..d4012fb5218 100644 --- a/test/lisp/textmodes/ispell-tests/ispell-tests.el +++ b/test/lisp/textmodes/ispell-tests/ispell-tests.el | |||
| @@ -30,7 +30,7 @@ | |||
| 30 | (add-to-list 'load-path (when (not (null load-file-name)) | 30 | (add-to-list 'load-path (when (not (null load-file-name)) |
| 31 | (directory-file-name | 31 | (directory-file-name |
| 32 | (file-name-directory load-file-name)))) | 32 | (file-name-directory load-file-name)))) |
| 33 | (load "ispell-tests-common.el")) | 33 | (load "ispell-tests-common")) |
| 34 | 34 | ||
| 35 | (declare-function letopt "ispell-tests-common") | 35 | (declare-function letopt "ispell-tests-common") |
| 36 | (declare-function ispell-tests--some-backend "ispell-tests-common" t t) | 36 | (declare-function ispell-tests--some-backend "ispell-tests-common" t t) |