1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Fix the jit-lock-fontify-now test names

* test/lisp/jit-lock-tests.el
(jit-lock-fontify-now-mends-the-gaps)
(jit-lock-fontify-now-does-not-refontify-unnecessarily):
Fix the test names.
This commit is contained in:
Dmitry Gutov 2016-05-09 12:29:18 +03:00
parent 60e9b006b5
commit fd45b5276b

View file

@ -38,7 +38,7 @@
(jit-lock-fontify-now (point-min) (point-max))
(should-not (text-property-not-all (point-min) (point-max) 'fontified t))))
(ert-deftest jit-lock-fontify-mends-the-gaps ()
(ert-deftest jit-lock-fontify-now-mends-the-gaps ()
(ert-with-test-buffer (:name "xxx")
(jit-lock-tests--setup-buffer)
(insert "aaabbbcccddd")
@ -48,7 +48,7 @@
(jit-lock-fontify-now (point-min) (point-max))
(should-not (text-property-not-all (point-min) (point-max) 'fontified t))))
(ert-deftest jit-lock-does-not-refontify-unnecessarily ()
(ert-deftest jit-lock-fontify-now-does-not-refontify-unnecessarily ()
(ert-with-test-buffer (:name "xxx")
(setq font-lock-defaults
(list '(((lambda () (error "Don't call me")))) t))