diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-07-30 12:45:36 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-07-30 12:45:36 +0200 |
commit | 2539039335709ccf64f4792882a0e74a0715f1fa (patch) | |
tree | c9dc4239a8030289b5f34bed39f3bc3821d836db /test/lisp/subr-tests.el | |
parent | cd3ce6e54182a1630b870f13289131cc957eafa6 (diff) | |
download | emacs-2539039335709ccf64f4792882a0e74a0715f1fa.tar.gz emacs-2539039335709ccf64f4792882a0e74a0715f1fa.tar.bz2 emacs-2539039335709ccf64f4792882a0e74a0715f1fa.zip |
Move a test from subr-tests to print-tests
Diffstat (limited to 'test/lisp/subr-tests.el')
-rw-r--r-- | test/lisp/subr-tests.el | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/lisp/subr-tests.el b/test/lisp/subr-tests.el index be613ce7595..08f08f04665 100644 --- a/test/lisp/subr-tests.el +++ b/test/lisp/subr-tests.el @@ -1126,15 +1126,5 @@ final or penultimate step during initialization.")) (should (equal (butlast l n) (subr-tests--butlast-ref l n)))))) -(ert-deftest test-print-unreadable-function-buffer () - (with-temp-buffer - (let ((current (current-buffer)) - callback-buffer) - (let ((print-unreadable-function - (lambda (_object _escape) - (setq callback-buffer (current-buffer))))) - (prin1-to-string (make-marker))) - (should (eq current callback-buffer))))) - (provide 'subr-tests) ;;; subr-tests.el ends here |