Fix apparent typo in new cl-generic-tests.el test case

This commit is contained in:
Lars Ingebrigtsen 2021-08-04 06:38:34 +02:00
parent b0d07396e8
commit 516affe1b3

View file

@ -60,7 +60,7 @@
(defvar cl--generic-fooval 41)
(cl-defmethod cl--generic-1 ((_x (eql (+ cl--generic-fooval 1))) _y)
"forty-two")
(should (equal (cl--generic 42 nil) "forty-two")))
(should (equal (cl--generic-1 42 nil) "forty-two")))
(cl-defstruct cl-generic-struct-parent a b)
(cl-defstruct (cl-generic-struct-child1 (:include cl-generic-struct-parent)) c)