summaryrefslogtreecommitdiff
path: root/test/lisp/emacs-lisp/cl-print-tests.el
diff options
context:
space:
mode:
authorTino Calancha <tino.calancha@gmail.com>2017-03-13 20:01:40 +0900
committerTino Calancha <tino.calancha@gmail.com>2017-03-13 20:01:40 +0900
commit7a50abee22581e02f0d822c3d9684c0985cdecb2 (patch)
tree7b5348067450fc90f363f3f531f238c225fee04f /test/lisp/emacs-lisp/cl-print-tests.el
parent94b59f7dd1e8611495ff0f4596dc6dec20e268af (diff)
downloademacs-7a50abee22581e02f0d822c3d9684c0985cdecb2.tar.gz
emacs-7a50abee22581e02f0d822c3d9684c0985cdecb2.tar.bz2
emacs-7a50abee22581e02f0d822c3d9684c0985cdecb2.zip
* test/lisp/emacs-lisp/cl-print-tests.el (cl-print-tests-1): Fix regexp.
Diffstat (limited to 'test/lisp/emacs-lisp/cl-print-tests.el')
-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 f46ecde0319..04ddfeeca8a 100644
--- a/test/lisp/emacs-lisp/cl-print-tests.el
+++ b/test/lisp/emacs-lisp/cl-print-tests.el
@@ -34,7 +34,7 @@
(let ((print-circle t))
(should (equal (cl-prin1-to-string `((x . ,x) (y . ,x)))
"((x . #1=#s(cl-print--test :a 1 :b 2)) (y . #1#))")))
- (should (string-match "\\`#f(compiled-function (x) .*)\\'"
+ (should (string-match "\\`#f(compiled-function (x) .*\n\n.*)\\'"
(cl-prin1-to-string (symbol-function #'caar))))))
;;; cl-print-tests.el ends here.