diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2020-04-28 14:12:25 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2020-04-28 14:12:25 +0200 |
commit | 428d476bbe2e4208a75ecd998dd80b0e2d65752b (patch) | |
tree | 53b67eeb2cbb55a7434634cfcb13e0e9519f004c /test/lisp | |
parent | 771a6b68165b986b6bf9249c57ca11d310b0f0e4 (diff) | |
download | emacs-428d476bbe2e4208a75ecd998dd80b0e2d65752b.tar.gz |
Don't skip test semantic-utest-Python
* test/lisp/cedet/semantic-utest.el (semantic-utest-Python):
Ensure test is not skipped.
Diffstat (limited to 'test/lisp')
-rw-r--r-- | test/lisp/cedet/semantic-utest.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/cedet/semantic-utest.el b/test/lisp/cedet/semantic-utest.el index 7e336557948..1a7a8655ba9 100644 --- a/test/lisp/cedet/semantic-utest.el +++ b/test/lisp/cedet/semantic-utest.el @@ -577,7 +577,7 @@ INSERTME is the text to be inserted after the deletion." ))) (ert-deftest semantic-utest-Python() - (skip-unless (featurep 'python-mode)) + (skip-unless (fboundp 'python-mode)) (let ((python-indent-guess-indent-offset nil)) (semantic-utest-generic "Python" (semantic-utest-fname "pytest.py") semantic-utest-Python-buffer-contents semantic-utest-Python-name-contents '("fun2") "#1" "#deleted line") )) |