From 599d4a99403a8ea40144ca94dbf9f99fb1a038ee Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 27 Aug 2012 09:27:48 -0600 Subject: [PATCH] fix test suite for condition-variable-p name change --- test/automated/threads.el | 8 ++++---- 1 file 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 @@ 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"