]> git.eshelyaron.com Git - emacs.git/commitdiff
* Fix a test in test/lisp/subr-tests.el
authorAndrea Corallo <akrl@sdf.org>
Sat, 3 Oct 2020 19:33:08 +0000 (21:33 +0200)
committerAndrea Corallo <akrl@sdf.org>
Mon, 5 Oct 2020 19:33:04 +0000 (21:33 +0200)
* test/lisp/subr-tests.el (subr-tests-bug22027): Redefine
`read-string' with a lambda with the same number of arguments.

test/lisp/subr-tests.el

index 035c064d75c22e73fa195cce69da5a72d1fdfc7a..c3dfd27a8506f02583c3d230a23958af15d2121d 100644 (file)
@@ -338,7 +338,7 @@ cf. Bug#25477."
   "Test for https://debbugs.gnu.org/22027 ."
   (let ((default "foo") res)
     (cl-letf (((symbol-function 'read-string)
-               (lambda (_prompt _init _hist def) def)))
+               (lambda (_prompt _init _hist def _inher-input) def)))
       (setq res (read-passwd "pass: " 'confirm (mapconcat #'string default "")))
       (should (string= default res)))))