]> git.eshelyaron.com Git - emacs.git/commitdiff
tests: Fix typo in ede/detect-utest
authorDavid Engster <deng@randomsample.de>
Sun, 15 Feb 2015 21:28:44 +0000 (22:28 +0100)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 16:15:23 +0000 (18:15 +0200)
This worked by chance on Emacs 24.x, but breaks on Emacs 25.
*  test/manual/cedet/cedet/ede/detect-utest.el

test/manual/cedet/cedet/ede/detect-utest.el

index bdc55c076a217a2e635b389a0a611858092ce6e3..03557850f7c56cd31df2cca1c1a462d6eaa34ed6 100644 (file)
@@ -554,7 +554,7 @@ If LOADEDP is nil, make sure non were loaded."
 
 (defun ede-detect-utest-subautomake-p (project)
   "Special predicate for testing the ede-proj-project type."
-  (and (project-am-makefile project)
+  (and (project-am-makefile-p project)
        (string= (file-name-nondirectory (directory-file-name (oref project directory))) "automake")
        (not (eq project (ede-current-project)))
        ))