From 1b4e4fda5ea3364f752b20bef0147001ae58ab97 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Fri, 12 Sep 2025 16:18:26 +0200 Subject: [PATCH] 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. --- test/lisp/textmodes/ispell-tests/ispell-aspell-tests.el | 4 ++-- test/lisp/textmodes/ispell-tests/ispell-hunspell-tests.el | 2 +- .../ispell-tests/ispell-international-ispell-tests.el | 2 +- test/lisp/textmodes/ispell-tests/ispell-tests.el | 2 +- 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 @@ (add-to-list 'load-path (when (not (null load-file-name)) (directory-file-name (file-name-directory load-file-name)))) - (load "ispell-tests-common.el")) + (load "ispell-tests-common")) -(declare-function letopt (expand-file-name "test/lisp/textmodes/ispell-tests/ispell-tests-common.el" source-directory) t t) +(declare-function letopt (expand-file-name "ispell-tests-common" source-directory) t t) (ert-deftest ispell/aspell/ispell-check-version/works () "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 @@ (add-to-list 'load-path (when (not (null load-file-name)) (directory-file-name (file-name-directory load-file-name)))) - (load "ispell-tests-common.el")) + (load "ispell-tests-common")) (ert-deftest ispell/hunspell/ispell-word/english/check-only () "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 @@ (add-to-list 'load-path (and load-file-name (directory-file-name (file-name-directory load-file-name)))) - (load "ispell-tests-common.el")) + (load "ispell-tests-common")) (ert-deftest ispell/international-ispell/ispell-word/russian/check-only () "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 @@ (add-to-list 'load-path (when (not (null load-file-name)) (directory-file-name (file-name-directory load-file-name)))) - (load "ispell-tests-common.el")) + (load "ispell-tests-common")) (declare-function letopt "ispell-tests-common") (declare-function ispell-tests--some-backend "ispell-tests-common" t t)