aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris2017-03-08 14:43:16 -0500
committerGlenn Morris2017-03-08 14:43:16 -0500
commitde610c4b678e4634e20baa2afee7d8c921e1e3fc (patch)
tree7395dcae4adc51139df349ba70290c10a69b4258 /test
parente4fff0ff2a2f3526c7b2f82100b5ad56b7b481a1 (diff)
downloademacs-de610c4b678e4634e20baa2afee7d8c921e1e3fc.tar.gz
emacs-de610c4b678e4634e20baa2afee7d8c921e1e3fc.zip
Update a cl-print test
* test/lisp/emacs-lisp/cl-print-tests.el (cl-print-tests-1): Update for recent change in cl-print-object function output.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/emacs-lisp/cl-print-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/cl-print-tests.el b/test/lisp/emacs-lisp/cl-print-tests.el
index cbc79b0e64a..f46ecde0319 100644
--- a/test/lisp/emacs-lisp/cl-print-tests.el
+++ b/test/lisp/emacs-lisp/cl-print-tests.el
@@ -34,7 +34,7 @@
34 (let ((print-circle t)) 34 (let ((print-circle t))
35 (should (equal (cl-prin1-to-string `((x . ,x) (y . ,x))) 35 (should (equal (cl-prin1-to-string `((x . ,x) (y . ,x)))
36 "((x . #1=#s(cl-print--test :a 1 :b 2)) (y . #1#))"))) 36 "((x . #1=#s(cl-print--test :a 1 :b 2)) (y . #1#))")))
37 (should (string-match "\\`#<compiled-function (x) .*>\\'" 37 (should (string-match "\\`#f(compiled-function (x) .*)\\'"
38 (cl-prin1-to-string (symbol-function #'caar)))))) 38 (cl-prin1-to-string (symbol-function #'caar))))))
39 39
40;;; cl-print-tests.el ends here. 40;;; cl-print-tests.el ends here.