diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-26 01:53:56 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-26 17:53:23 +0200 |
commit | 8bb28e740dd2cc8058d7833dd60b0ef9a8765c1b (patch) | |
tree | 6daad156b285e27c95d4afb3f7d0e4773032961b /test/src/thread-tests.el | |
parent | 4cc43449432427817400bad12e7ef722e6591a21 (diff) | |
download | emacs-8bb28e740dd2cc8058d7833dd60b0ef9a8765c1b.tar.gz emacs-8bb28e740dd2cc8058d7833dd60b0ef9a8765c1b.tar.bz2 emacs-8bb28e740dd2cc8058d7833dd60b0ef9a8765c1b.zip |
; Minor stylistic checkdoc fixes in test/**/*.el
Diffstat (limited to 'test/src/thread-tests.el')
-rw-r--r-- | test/src/thread-tests.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/src/thread-tests.el b/test/src/thread-tests.el index fc7bc7441b7..52eace7e9d2 100644 --- a/test/src/thread-tests.el +++ b/test/src/thread-tests.el @@ -70,12 +70,12 @@ (thread-live-p (make-thread #'ignore)))) (ert-deftest threads-all-threads () - "Simple test for all-threads." + "Simple test for `all-threads'." (skip-unless (featurep 'threads)) (should (listp (all-threads)))) (ert-deftest threads-main-thread () - "Simple test for all-threads." + "Simple test for `all-threads'." (skip-unless (featurep 'threads)) (should (eq main-thread (car (all-threads))))) @@ -155,7 +155,7 @@ (should (eq (type-of (make-mutex)) 'mutex))) (ert-deftest threads-mutex-lock-unlock () - "Test mutex-lock and unlock." + "Test `mutex-lock' and unlock." (skip-unless (featurep 'threads)) (should (let ((mx (make-mutex))) @@ -392,4 +392,4 @@ (let ((th (make-thread 'ignore))) (should-not (equal th main-thread)))) -;;; threads.el ends here +;;; thread-tests.el ends here |