diff options
author | Michal Nazarewicz <mina86@mina86.com> | 2016-06-07 22:32:59 +0200 |
---|---|---|
committer | Michal Nazarewicz <mina86@mina86.com> | 2016-06-08 19:10:59 +0200 |
commit | 7715ee54b3588cfdef03b5d45aaf44b73b422ec6 (patch) | |
tree | 176ae2e58b9018e0b761aea2bd31e2161e6c0481 /test/lisp/gnus/message-tests.el | |
parent | 027e6fbfe472bad1fd0464e070bc782c7e3e776a (diff) | |
download | emacs-7715ee54b3588cfdef03b5d45aaf44b73b422ec6.tar.gz |
Remove ‘ert-with-function-mocked’ macro in favour of ‘cl-letf’ macro
* lisp/emacs-lisp/ert-x.el (ert-with-function-mocked): Remove macro
in favour of ‘cl-letf’ macro which is more generic. All existing
uses are migrated accordingly. The macro has not been included in
an official release yet so it should be fine to delete it.
Diffstat (limited to 'test/lisp/gnus/message-tests.el')
-rw-r--r-- | test/lisp/gnus/message-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/gnus/message-tests.el b/test/lisp/gnus/message-tests.el index ae34f24d741..13c15e33b27 100644 --- a/test/lisp/gnus/message-tests.el +++ b/test/lisp/gnus/message-tests.el @@ -57,7 +57,7 @@ (ert-deftest message-strip-subject-trailing-was () - (ert-with-function-mocked message-talkative-question nil + (cl-letf (((symbol-function 'message-talkative-question) nil)) (with-temp-buffer (let ((no-was "Re: Foo ") (with-was "Re: Foo \t (was: Bar ) ") |