aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorStefan Kangas2024-05-27 10:11:15 +0200
committerStefan Kangas2024-05-27 10:11:15 +0200
commit225b426f256ba00aff7669ad18a5c85f86e22f67 (patch)
tree5453144d594bfa867b39fd965c7b41f7492b428e /test
parent21b2954c90eb5b6fa1bbfeda4c5074a0bdc53ba8 (diff)
downloademacs-225b426f256ba00aff7669ad18a5c85f86e22f67.tar.gz
emacs-225b426f256ba00aff7669ad18a5c85f86e22f67.zip
; Fix typos
Diffstat (limited to 'test')
-rw-r--r--test/lisp/emacs-lisp/icons-tests.el2
-rw-r--r--test/lisp/progmodes/python-tests.el4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/lisp/emacs-lisp/icons-tests.el b/test/lisp/emacs-lisp/icons-tests.el
index fa320a49866..d3bf63b2b60 100644
--- a/test/lisp/emacs-lisp/icons-tests.el
+++ b/test/lisp/emacs-lisp/icons-tests.el
@@ -54,7 +54,7 @@
54 (enable-theme 'test-icons-theme) 54 (enable-theme 'test-icons-theme)
55 (should (equal (icon-string 'icon-test1) "<")))) 55 (should (equal (icon-string 'icon-test1) "<"))))
56 56
57(ert-deftest test-icon-inheretance () 57(ert-deftest test-icon-inheritance ()
58 (let ((icon-preference '(image emoji symbol text))) 58 (let ((icon-preference '(image emoji symbol text)))
59 (should (equal (icon-string 'icon-test2) ">"))) 59 (should (equal (icon-string 'icon-test2) ">")))
60 (let ((icon-preference '(text))) 60 (let ((icon-preference '(text)))
diff --git a/test/lisp/progmodes/python-tests.el b/test/lisp/progmodes/python-tests.el
index 06943e22f5b..66eb4e7a29d 100644
--- a/test/lisp/progmodes/python-tests.el
+++ b/test/lisp/progmodes/python-tests.el
@@ -7159,12 +7159,12 @@ always located at the beginning of buffer."
7159 (forward-to-word 1) 7159 (forward-to-word 1)
7160 (should (eq (face-at-point) font-lock-keyword-face))))) 7160 (should (eq (face-at-point) font-lock-keyword-face)))))
7161 7161
7162(ert-deftest python-ts-mode-named-assignement-face-1 () 7162(ert-deftest python-ts-mode-named-assignment-face-1 ()
7163 (python-ts-tests-with-temp-buffer 7163 (python-ts-tests-with-temp-buffer
7164 "var := 3" 7164 "var := 3"
7165 (should (eq (face-at-point) font-lock-variable-name-face)))) 7165 (should (eq (face-at-point) font-lock-variable-name-face))))
7166 7166
7167(ert-deftest python-ts-mode-assignement-face-2 () 7167(ert-deftest python-ts-mode-assignment-face-2 ()
7168 (python-ts-tests-with-temp-buffer 7168 (python-ts-tests-with-temp-buffer
7169 "var, *rest = call()" 7169 "var, *rest = call()"
7170 (dolist (test '("var" "rest")) 7170 (dolist (test '("var" "rest"))