]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix package tests for tetris no longer existing as a package
authorGlenn Morris <rgm@gnu.org>
Mon, 28 Dec 2020 19:03:30 +0000 (11:03 -0800)
committerGlenn Morris <rgm@gnu.org>
Mon, 28 Dec 2020 19:03:30 +0000 (11:03 -0800)
* test/lisp/emacs-lisp/package-tests.el
(package-test-list-filter-by-name, package-test-list-clear-filter):
Use ansi-color instead of tetris, which no longer has a version:.

test/lisp/emacs-lisp/package-tests.el

index 23267545f830ab3d29a30751e920e268b69ed817..92e593328c66d23826c0b36d0a8a528633fe217c 100644 (file)
@@ -405,9 +405,9 @@ Must called from within a `tar-mode' buffer."
 (ert-deftest package-test-list-filter-by-name ()
   "Ensure package list is filtered correctly by package name."
   (with-package-menu-test ()
-    (package-menu-filter-by-name "tetris")
+    (package-menu-filter-by-name "ansi-color")
     (goto-char (point-min))
-    (should (re-search-forward "^\\s-+tetris" nil t))
+    (should (re-search-forward "^\\s-+ansi-color" nil t))
     (should (= (count-lines (point-min) (point-max)) 1))))
 
 (ert-deftest package-test-list-filter-by-status ()
@@ -463,7 +463,7 @@ Must called from within a `tar-mode' buffer."
   "Ensure package list filter is cleared correctly."
   (with-package-menu-test
     (let ((num-packages (count-lines (point-min) (point-max))))
-      (package-menu-filter-by-name "tetris")
+      (package-menu-filter-by-name "ansi-color")
       (should (= (count-lines (point-min) (point-max)) 1))
       (package-menu-clear-filter)
       (should (= (count-lines (point-min) (point-max)) num-packages)))))