From 99964e240f38df3408c97b0bde0da126ff5939aa Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Fri, 4 Jan 2019 12:46:27 +0100 Subject: [PATCH] * test/lisp/filenotify-tests.el (file-notify-test03-events): Adapt test. --- test/lisp/filenotify-tests.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/lisp/filenotify-tests.el b/test/lisp/filenotify-tests.el index 18b755d7899..60b2fbeada7 100644 --- a/test/lisp/filenotify-tests.el +++ b/test/lisp/filenotify-tests.el @@ -687,9 +687,9 @@ delivered." ;; cygwin does not raise a `changed' event. ((eq system-type 'cygwin) '(created deleted stopped)) - ((string-equal (file-notify--test-library) "kqueue") - '(created changed deleted stopped)) - (t '(created changed deleted deleted stopped))) + ;; Still not all monitors detect both `deleted' events. + (t '((created changed deleted stopped) + (created changed deleted deleted stopped)))) (write-region "any text" nil file-notify--test-tmpfile nil 'no-message) (file-notify--test-read-event) -- 2.39.5