]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix failing ERC test
authorStefan Kangas <stefankangas@gmail.com>
Mon, 23 Oct 2023 12:36:46 +0000 (14:36 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Mon, 23 Oct 2023 12:37:23 +0000 (14:37 +0200)
* test/lisp/erc/erc-tests.el (erc--update-modules/unknown): Fix
test failing due to grave/curve quote.

test/lisp/erc/erc-tests.el

index 4d2f880b46f2efb125be26df58e8744b7f6eecfb..92e364503e2684f96881cefdcd8914a38c3a8c08 100644 (file)
        (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")))))))