summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorF. Jason Park <jp@neverwas.me>2025-09-21 15:52:16 -0700
committerF. Jason Park <jp@neverwas.me>2026-05-12 21:03:02 -0700
commit1613f2e65263f01339be4107271d4abcee79edc5 (patch)
treef85c75690243a76b029a51355e79041f674d7bf8 /test
parent76f5181bc6af50dd7eab6deb75d83fd8e83e50e4 (diff)
Preserve order of local ERC modules for activation
* etc/ERC-NEWS: Add new section for ERC 5.7. * lisp/erc/erc.el (erc--update-modules): Reverse returned list. * test/lisp/erc/erc-tests.el (erc--update-modules/local): Update.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/erc/erc-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/erc/erc-tests.el b/test/lisp/erc/erc-tests.el
index 35997a83de1..f2f874717e9 100644
--- a/test/lisp/erc/erc-tests.el
+++ b/test/lisp/erc/erc-tests.el
@@ -3990,7 +3990,7 @@ keyword :result."
;; Returns local modules.
(should (equal (mapcar #'symbol-name (erc--update-modules erc-modules))
- '("erc-lo2-mode" "erc-lo1-mode")))
+ '("erc-lo1-mode" "erc-lo2-mode")))
;; Requiring `erc-lo2' defines `erc-lo2-mode'.
(should (equal (mapcar #'prin1-to-string (funcall get-calls))