summaryrefslogtreecommitdiff
path: root/test/lisp/progmodes/cperl-mode-tests.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2021-08-23 10:36:57 -0700
committerGlenn Morris <rgm@gnu.org>2021-08-23 10:36:57 -0700
commitc1c2266a1c38b1f8dfd001f653ebec6fa79fb3c3 (patch)
tree850237ca8e406c5b71e578c1a798ba6eba6a3ba8 /test/lisp/progmodes/cperl-mode-tests.el
parent00edc8329a6277f2e5b5204efbe503e2b7957006 (diff)
downloademacs-c1c2266a1c38b1f8dfd001f653ebec6fa79fb3c3.tar.gz
Fix recently added cperl test
* test/lisp/progmodes/cperl-mode-tests.el (cperl-test-here-doc-missing-end): Fix quote regexp.
Diffstat (limited to 'test/lisp/progmodes/cperl-mode-tests.el')
-rw-r--r--test/lisp/progmodes/cperl-mode-tests.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lisp/progmodes/cperl-mode-tests.el b/test/lisp/progmodes/cperl-mode-tests.el
index bcef885a77c..1d7565ae46b 100644
--- a/test/lisp/progmodes/cperl-mode-tests.el
+++ b/test/lisp/progmodes/cperl-mode-tests.el
@@ -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)