summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Gutov <dgutov@yandex.ru>2022-12-01 16:38:52 +0200
committerDmitry Gutov <dgutov@yandex.ru>2022-12-01 16:40:59 +0200
commit61311d68620094f6055c69f57f52bc9794498ba7 (patch)
tree02db0305b8c0254595165ad279968b4f88052dfb
parent0a5ede014993bb6699c58a2c9d3631b4aff20847 (diff)
downloademacs-61311d68620094f6055c69f57f52bc9794498ba7.tar.gz
; Fix test failure on CI
-rw-r--r--test/lisp/progmodes/project-tests.el4
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))))))