summaryrefslogtreecommitdiff
path: root/test/lisp/emacs-lisp/ring-tests.el
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2021-11-18 12:47:35 +0100
committerMattias EngdegÄrd <mattiase@acm.org>2021-11-18 12:47:35 +0100
commit7a1e5ac8b29b731e89cc9d5b498e31bd90840b9b (patch)
treed68c8ec9c7df73af889e4d24d7738354de5c02bd /test/lisp/emacs-lisp/ring-tests.el
parent67ffcc5c7f5e1adcc6f662b01c7904f977dd4f51 (diff)
downloademacs-7a1e5ac8b29b731e89cc9d5b498e31bd90840b9b.tar.gz
emacs-7a1e5ac8b29b731e89cc9d5b498e31bd90840b9b.tar.bz2
emacs-7a1e5ac8b29b731e89cc9d5b498e31bd90840b9b.zip
Eliminate ERT test name clashes (bug#51941)
* test/lisp/electric-tests.el (js-mode-braces-with-layout-and-indent): * test/lisp/emacs-lisp/cl-lib-tests.el (cl-lib-test-fifth): * test/lisp/thingatpt-tests.el (test-symbol-thing-2): Remove duplicated tests. * test/lisp/emacs-lisp/generator-tests.el (cps-loop): * test/lisp/emacs-lisp/ring-tests.el (ring-tests-insert): * test/lisp/help-tests.el (help-tests-substitute-command-keys/no-change): * test/lisp/net/netrc-tests.el (test-netrc-credentials): * test/lisp/progmodes/elisp-mode-tests.el (elisp-completes-functions-after-let-bindings): * test/lisp/thingatpt-tests.el (test-symbol-thing-3): * test/src/buffer-tests.el (deftest-overlayp-1, buffer-tests--*): * test/src/buffer-tests.el (test-buffer-swap-text-1): * test/src/data-tests.el (binding-test-set-constant-nil) (data-tests-logcount): Rename clashing tests.
Diffstat (limited to 'test/lisp/emacs-lisp/ring-tests.el')
-rw-r--r--test/lisp/emacs-lisp/ring-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/ring-tests.el b/test/lisp/emacs-lisp/ring-tests.el
index 55df4f36685..3ec20a1e8ef 100644
--- a/test/lisp/emacs-lisp/ring-tests.el
+++ b/test/lisp/emacs-lisp/ring-tests.el
@@ -199,7 +199,7 @@
(should (= (ring-size ring) 3))
(should (equal (ring-elements ring) '(5 4 3)))))
-(ert-deftest ring-tests-insert ()
+(ert-deftest ring-tests-insert-2 ()
(let ((ring (make-ring 2)))
(ring-insert+extend ring :a)
(ring-insert+extend ring :b)