Commit d1fa9f19 authored by Stefan Kangas's avatar Stefan Kangas
Browse files

Fix failing ERC test

* test/lisp/erc/erc-tests.el (erc--update-modules/unknown): Fix
test failing due to grave/curve quote.
parent baf14aa1
Pipeline #26873 failed with stage
in 8 minutes and 34 seconds
......@@ -2615,7 +2615,9 @@
(let* ((erc-modules '(foo))
(obarray (obarray-make))
(err (should-error (erc--update-modules erc-modules))))
(should (equal (cadr err) "`foo' is not a known ERC module"))
(should (string-match (rx bos (any "`") "foo" (any "'")
" is not a known ERC module" eos)
(cadr err)))
(should (equal (funcall get-calls)
`((req . ,(intern-soft "erc-foo")))))))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment