diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-12 18:33:03 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-12 18:36:49 +0200 |
commit | fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030 (patch) | |
tree | bdd67b63d55da0b41e367feecc20e02ada92e92d /test | |
parent | 79113b5e4a7d69ec0fb3401b763292d91b54632e (diff) | |
download | emacs-fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030.tar.gz emacs-fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030.tar.bz2 emacs-fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030.zip |
; Fix symbol quoting typos
Diffstat (limited to 'test')
-rw-r--r-- | test/lisp/auth-source-pass-tests.el | 8 | ||||
-rw-r--r-- | test/lisp/progmodes/flymake-tests.el | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/test/lisp/auth-source-pass-tests.el b/test/lisp/auth-source-pass-tests.el index d050ac5b695..a0a97eca5eb 100644 --- a/test/lisp/auth-source-pass-tests.el +++ b/test/lisp/auth-source-pass-tests.el @@ -56,10 +56,10 @@ ("key2" . "please: keep my space after colon")))))) (defvar auth-source-pass--debug-log nil - "Contains a list of all messages passed to `auth-source-do-debug`.") + "Contains a list of all messages passed to `auth-source-do-debug'.") (defun auth-source-pass--have-message-matching (regexp) - "Return non-nil iff at least one `auth-source-do-debug` match REGEXP." + "Return non-nil iff at least one `auth-source-do-debug' match REGEXP." (seq-find (lambda (message) (string-match regexp message)) auth-source-pass--debug-log)) @@ -75,8 +75,8 @@ REGEXP is the same as in `auth-source-pass--have-message-matching'." (put #'auth-source-pass--have-message-matching 'ert-explainer #'auth-source-pass--explain--have-message-matching) (defun auth-source-pass--debug (&rest msg) - "Format MSG and add that to `auth-source-pass--debug-log`. -This function is intended to be set to `auth-source-debug`." + "Format MSG and add that to `auth-source-pass--debug-log'. +This function is intended to be set to `auth-source-debug'." (add-to-list 'auth-source-pass--debug-log (apply #'format msg) t)) (defvar auth-source-pass--parse-log nil) diff --git a/test/lisp/progmodes/flymake-tests.el b/test/lisp/progmodes/flymake-tests.el index bda1b663c22..45e0c435984 100644 --- a/test/lisp/progmodes/flymake-tests.el +++ b/test/lisp/progmodes/flymake-tests.el @@ -60,7 +60,7 @@ (cl-defun flymake-tests--call-with-fixture (fn file &key (severity-predicate nil sev-pred-supplied-p)) - "Call FN after flymake setup in FILE, using `flymake-proc`. + "Call FN after flymake setup in FILE, using `flymake-proc'. SEVERITY-PREDICATE is used to setup `flymake-proc-diagnostic-type-pred'" (let* ((file (expand-file-name file flymake-tests-data-directory)) |