diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2022-12-01 16:38:52 +0200 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2022-12-01 16:40:59 +0200 |
commit | 61311d68620094f6055c69f57f52bc9794498ba7 (patch) | |
tree | 02db0305b8c0254595165ad279968b4f88052dfb /test/lisp/progmodes/project-tests.el | |
parent | 0a5ede014993bb6699c58a2c9d3631b4aff20847 (diff) | |
download | emacs-61311d68620094f6055c69f57f52bc9794498ba7.tar.gz emacs-61311d68620094f6055c69f57f52bc9794498ba7.tar.bz2 emacs-61311d68620094f6055c69f57f52bc9794498ba7.zip |
; Fix test failure on CI
Diffstat (limited to 'test/lisp/progmodes/project-tests.el')
-rw-r--r-- | test/lisp/progmodes/project-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lisp/progmodes/project-tests.el b/test/lisp/progmodes/project-tests.el index 55f3f499b39..c3b886873d3 100644 --- a/test/lisp/progmodes/project-tests.el +++ b/test/lisp/progmodes/project-tests.el @@ -123,8 +123,8 @@ When `project-ignores' includes a name matching project dir." (project-vc-extra-root-markers nil) (project (project-current nil dir))) (should-not (null project)) - (should (equal - "test/lisp/progmodes/project-tests.el" + (should (string-match-p + "\\`test/lisp/progmodes/project-tests\\.elc?" (file-relative-name project-tests--this-file (project-root project)))))) |