]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/lisp/emacs-lisp/cl-print-tests.el (cl-print-tests-1): Fix regexp.
authorTino Calancha <tino.calancha@gmail.com>
Mon, 13 Mar 2017 11:01:40 +0000 (20:01 +0900)
committerTino Calancha <tino.calancha@gmail.com>
Mon, 13 Mar 2017 11:01:40 +0000 (20:01 +0900)
test/lisp/emacs-lisp/cl-print-tests.el

index f46ecde0319a93afc63dd82708a373c73b85b658..04ddfeeca8a2263b6d4a59f9dfd84090b6afec47 100644 (file)
@@ -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.