diff options
| author | Tom Tromey | 2012-08-27 09:27:48 -0600 |
|---|---|---|
| committer | Tom Tromey | 2012-08-27 09:27:48 -0600 |
| commit | 599d4a99403a8ea40144ca94dbf9f99fb1a038ee (patch) | |
| tree | 337f6ed41c0281ce3a64258c12d075277d731cac | |
| parent | e7c4e870bb26dfc9d2de7b337609a793b35de3e2 (diff) | |
| download | emacs-599d4a99403a8ea40144ca94dbf9f99fb1a038ee.tar.gz emacs-599d4a99403a8ea40144ca94dbf9f99fb1a038ee.zip | |
fix test suite for condition-variable-p name change
| -rw-r--r-- | test/automated/threads.el | 8 |
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" |