Fix recently added cperl test

* test/lisp/progmodes/cperl-mode-tests.el
(cperl-test-here-doc-missing-end): Fix quote regexp.
This commit is contained in:
Glenn Morris 2021-08-23 10:36:57 -07:00
parent 00edc8329a
commit c1c2266a1c

View file

@ -231,7 +231,7 @@ issued by CPerl mode."
(goto-char (point-min))
(funcall cperl-test-mode)
(cperl-find-pods-heres)
(should (string-match "End of here-document [']HERE[']"
(should (string-match "End of here-document ['`]HERE[']"
collected-messages))))
(ert-with-message-capture collected-messages
(with-temp-buffer
@ -242,7 +242,7 @@ issued by CPerl mode."
(goto-char (point-min))
(funcall cperl-test-mode)
(cperl-find-pods-heres)
(should (string-match "End of here-document [']THERE[']"
(should (string-match "End of here-document ['`]THERE[']"
collected-messages)))))
(defvar perl-continued-statement-offset)