diff options
Diffstat (limited to 'test/src/emacs-module-tests.el')
-rw-r--r-- | test/src/emacs-module-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/emacs-module-tests.el b/test/src/emacs-module-tests.el index ac88011b543..59af5d9a4a8 100644 --- a/test/src/emacs-module-tests.el +++ b/test/src/emacs-module-tests.el @@ -457,7 +457,7 @@ See Bug#36226." (ert-deftest module/async-pipe () "Check that writing data from another thread works." - (skip-unless (not (eq system-type 'windows-nt))) ; FIXME! + (skip-when (eq system-type 'windows-nt)) ; FIXME! (with-temp-buffer (let ((process (make-pipe-process :name "module/async-pipe" :buffer (current-buffer) |