aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/automated/threads.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/automated/threads.el b/test/automated/threads.el
index 87e5eec218f..b1c2af59600 100644
--- a/test/automated/threads.el
+++ b/test/automated/threads.el
@@ -176,12 +176,12 @@
176 threads-test-global))) 176 threads-test-global)))
177 177
178(ert-deftest threads-condvarp () 178(ert-deftest threads-condvarp ()
179 "simple test of condition-variablep" 179 "simple test of condition-variable-p"
180 (should-not (condition-variablep 'hi))) 180 (should-not (condition-variable-p 'hi)))
181 181
182(ert-deftest threads-condvarp-2 () 182(ert-deftest threads-condvarp-2 ()
183 "another simple test of condition-variablep" 183 "another simple test of condition-variable-p"
184 (should (condition-variablep (make-condition-variable (make-mutex))))) 184 (should (condition-variable-p (make-condition-variable (make-mutex)))))
185 185
186(ert-deftest threads-condvar-type () 186(ert-deftest threads-condvar-type ()
187 "type-of condvar" 187 "type-of condvar"