]> git.eshelyaron.com Git - emacs.git/commitdiff
Update a cl-print test
authorGlenn Morris <rgm@gnu.org>
Wed, 8 Mar 2017 19:43:16 +0000 (14:43 -0500)
committerGlenn Morris <rgm@gnu.org>
Wed, 8 Mar 2017 19:43:16 +0000 (14:43 -0500)
* test/lisp/emacs-lisp/cl-print-tests.el (cl-print-tests-1):
Update for recent change in cl-print-object function output.

test/lisp/emacs-lisp/cl-print-tests.el

index cbc79b0e64ae0b162f34e526e5d76bb8519a6305..f46ecde0319a93afc63dd82708a373c73b85b658 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 "\\`#<compiled-function (x) .*>\\'"
+    (should (string-match "\\`#f(compiled-function (x) .*)\\'"
                           (cl-prin1-to-string (symbol-function #'caar))))))
 
 ;;; cl-print-tests.el ends here.