summaryrefslogtreecommitdiff
path: root/test/lisp/descr-text-tests.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2020-07-08 17:35:54 -0700
committerGlenn Morris <rgm@gnu.org>2020-07-08 17:35:54 -0700
commitef8bd7d8561be7ae2749127606bc40eed421601e (patch)
tree3d25b434f63b855868992484a08e559f97707358 /test/lisp/descr-text-tests.el
parentfcc04678b906047992f018edeb26c5603147a76a (diff)
downloademacs-ef8bd7d8561be7ae2749127606bc40eed421601e.tar.gz
Update tests for recent changes
* test/lisp/descr-text-tests.el (descr-text-test-desc): Update for recent change to describe-char-eldoc. * test/lisp/progmodes/elisp-mode-tests.el (elisp--highlight-function-argument-indexed) (elisp--highlight-function-argument-keyed-1) (elisp--highlight-function-argument-keyed-2): Update for recent change to elisp--highlight-function-argument.
Diffstat (limited to 'test/lisp/descr-text-tests.el')
-rw-r--r--test/lisp/descr-text-tests.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lisp/descr-text-tests.el b/test/lisp/descr-text-tests.el
index 74fcdf5af37..b060dffb0ff 100644
--- a/test/lisp/descr-text-tests.el
+++ b/test/lisp/descr-text-tests.el
@@ -75,18 +75,18 @@
(goto-char (point-min))
(should (eq ?a (following-char))) ; make sure we are where we think we are
;; Function should return nil for an ASCII character.
- (should (not (describe-char-eldoc)))
+ (should (not (describe-char-eldoc 'ignore)))
(goto-char (1+ (point)))
(should (eq ?… (following-char)))
(let ((eldoc-echo-area-use-multiline-p t))
;; Function should return description of an Unicode character.
(should (equal "U+2026: Horizontal ellipsis (Po: Punctuation, Other)"
- (describe-char-eldoc))))
+ (describe-char-eldoc 'ignore))))
(goto-char (point-max))
;; At the end of the buffer, function should return nil and not blow up.
- (should (not (describe-char-eldoc)))))
+ (should (not (describe-char-eldoc 'ignore)))))
(provide 'descr-text-test)