Skip to content

Commit 75d48f3

Browse files
committed
mark test failed on macos
1 parent 6bb8281 commit 75d48f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/php-mode-test.el

+2-1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ file name and check that the faces of the fonts in the buffer match."
181181
The next character after \">We\" is a single quote. It should not
182182
have a string face."
183183
:expected-result :failed
184+
(skip-unless (not (eq system-type darwin))) ; TODO: Failed on macOS 28.2 or above!
184185
(with-php-mode-test ("issue-9.php")
185186
(search-forward ">We")
186187
(forward-char) ;; Jump to after the opening apostrophe
@@ -619,7 +620,7 @@ as a keyword."
619620
(ert-deftest php-project-root ()
620621
"Test for detection `php-project-root' by directory."
621622
(dolist (root (mapcar #'car php-project-available-root-files))
622-
(skip-unless (eq system-type windows-nt)) ; TODO: Make test compatible to Windows!
623+
(skip-unless (not (eq system-type windows-nt))) ; TODO: Make test compatible to Windows!
623624
(with-php-mode-test ("project/1/src/functions.php")
624625
(let ((php-project-root root))
625626
(should (string= (expand-file-name "project/1/" php-mode-test-dir)

0 commit comments

Comments
 (0)