X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/acaf905b1130aae80fa59d2c861ffd4c8eb75486..9e4a1ee063273a17fff2efacf4620986e2410562:/test/eshell.el diff --git a/test/eshell.el b/test/eshell.el index 7acb34b602..7baeb58a56 100644 --- a/test/eshell.el +++ b/test/eshell.el @@ -1,6 +1,6 @@ ;;; esh-test.el --- Eshell test suite -;; Copyright (C) 1999-2012 Free Software Foundation, Inc. +;; Copyright (C) 1999-2013 Free Software Foundation, Inc. ;; Author: John Wiegley @@ -28,7 +28,7 @@ ;;; Code: (eval-when-compile - (require 'cl) ; assert + (require 'cl-lib) (require 'eshell) (require 'esh-util)) (require 'esh-mode) @@ -267,9 +267,9 @@ (eshell-deftest banner banner-displayed "Startup banner is displayed at point-min" - (assert eshell-banner-message) + (cl-assert eshell-banner-message) (let ((msg (eval eshell-banner-message))) - (assert msg) + (cl-assert msg) (goto-char (point-min)) (looking-at msg)))