summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2021-08-18 11:50:42 -0700
committerGlenn Morris <rgm@gnu.org>2021-08-18 11:50:42 -0700
commit91f549becd03b1598b9d8b233f6058ba027f0a84 (patch)
tree40a4eaf1b760d9e6f5e5327b722de98ddd94d8ae
parent9b31ad36094666da6b3281025adc163829d89de8 (diff)
downloademacs-91f549becd03b1598b9d8b233f6058ba027f0a84.tar.gz
; Fix paren typo
-rw-r--r--test/lisp/simple-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/simple-tests.el b/test/lisp/simple-tests.el
index 728911208eb..3ece61290bc 100644
--- a/test/lisp/simple-tests.el
+++ b/test/lisp/simple-tests.el
@@ -969,7 +969,7 @@ See Bug#21722."
(should (= (length (delq nil (undo-make-selective-list 4 9))) 1))
;; FIXME this is the off-by-one error case.
;;(should (= (length (delq nil (undo-make-selective-list 5 9))) 0))
- (should (= (length (delq nil (undo-make-selective-list 6 9))) 0)))
+ (should (= (length (delq nil (undo-make-selective-list 6 9))) 0))))
(provide 'simple-test)
;;; simple-test.el ends here