* test/lisp/ffap-tests.el (ffap-other-window--bug-25352):
Update for incompatible ffap-other-window change.
"Test for Bug#25352. Checks that the window configuration is
left alone when opening a URL in an external browser."
(cl-letf* ((old (current-window-configuration))
- ((symbol-function 'ffap-prompter)
- (lambda () "https://www.gnu.org"))
(urls nil)
(ffap-url-fetcher (lambda (url) (push url urls) nil)))
- (should-not (ffap-other-window))
+ (should-not (ffap-other-window "https://www.gnu.org"))
(should (equal (current-window-configuration) old))
(should (equal urls '("https://www.gnu.org")))))