summaryrefslogtreecommitdiff
path: root/test/lisp/progmodes
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2021-10-26 10:04:24 +0200
committerMattias EngdegÄrd <mattiase@acm.org>2021-10-26 10:04:24 +0200
commitef86025bcdeb9a96b36f876e35081e41bf32917c (patch)
treea2783fe60eacc6fa4b6fc9cdc7d5326d167ece47 /test/lisp/progmodes
parentd8caa3d9fbd90de41efacfeb23c242df81c62bd0 (diff)
downloademacs-ef86025bcdeb9a96b36f876e35081e41bf32917c.tar.gz
emacs-ef86025bcdeb9a96b36f876e35081e41bf32917c.tar.bz2
emacs-ef86025bcdeb9a96b36f876e35081e41bf32917c.zip
; * test/lisp/progmodes/elisp-mode-tests.el: repair test failure
The test used an internal variable that has been renamed; use the new name. (Any variable would do here.)
Diffstat (limited to 'test/lisp/progmodes')
-rw-r--r--test/lisp/progmodes/elisp-mode-tests.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lisp/progmodes/elisp-mode-tests.el b/test/lisp/progmodes/elisp-mode-tests.el
index 8a3669c4272..9516687f5b0 100644
--- a/test/lisp/progmodes/elisp-mode-tests.el
+++ b/test/lisp/progmodes/elisp-mode-tests.el
@@ -782,11 +782,11 @@ to (xref-elisp-test-descr-to-target xref)."
))
(xref-elisp-deftest find-defs-defvar-el
- (elisp--xref-find-definitions 'xref--marker-ring)
+ (elisp--xref-find-definitions 'xref--history)
(list
- (xref-make "(defvar xref--marker-ring)"
+ (xref-make "(defvar xref--history)"
(xref-make-elisp-location
- 'xref--marker-ring 'defvar
+ 'xref--history 'defvar
(expand-file-name "../../../lisp/progmodes/xref.el" emacs-test-dir)))
))