fix test suite for condition-variable-p name change
This commit is contained in:
parent
e7c4e870bb
commit
599d4a9940
1 changed files with 4 additions and 4 deletions
|
@ -176,12 +176,12 @@
|
|||
threads-test-global)))
|
||||
|
||||
(ert-deftest threads-condvarp ()
|
||||
"simple test of condition-variablep"
|
||||
(should-not (condition-variablep 'hi)))
|
||||
"simple test of condition-variable-p"
|
||||
(should-not (condition-variable-p 'hi)))
|
||||
|
||||
(ert-deftest threads-condvarp-2 ()
|
||||
"another simple test of condition-variablep"
|
||||
(should (condition-variablep (make-condition-variable (make-mutex)))))
|
||||
"another simple test of condition-variable-p"
|
||||
(should (condition-variable-p (make-condition-variable (make-mutex)))))
|
||||
|
||||
(ert-deftest threads-condvar-type ()
|
||||
"type-of condvar"
|
||||
|
|
Loading…
Add table
Reference in a new issue