From: Stefan Kangas Date: Wed, 19 Oct 2022 18:53:36 +0000 (+0200) Subject: ; * test/lisp/image/wallpaper-tests.el: Simplify last change. X-Git-Tag: emacs-29.0.90~1616^2~533 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a57a3746d8404abef82b6d0de670b2358ef01a24;p=emacs.git ; * test/lisp/image/wallpaper-tests.el: Simplify last change. --- diff --git a/test/lisp/image/wallpaper-tests.el b/test/lisp/image/wallpaper-tests.el index ab980a11bb6..a5d3343bd4d 100644 --- a/test/lisp/image/wallpaper-tests.el +++ b/test/lisp/image/wallpaper-tests.el @@ -100,15 +100,11 @@ :init-action (lambda () (setq called t))))) (wallpaper-command (wallpaper--find-command)) (wallpaper-command-args (wallpaper--find-command-args)) - (start (time-convert nil 'integer)) - (timeout 3) process) + process) (should (functionp (wallpaper-setter-init-action wallpaper--current-setter))) (setq process (wallpaper-set fil-jpg)) ;; Wait for "touch" process to exit so temp file is removed. - (while (and (< (- (time-convert nil 'integer) start) - timeout) - (process-live-p process)) - (sit-for 0.01)) + (accept-process-output process 3) (should called))))) (ert-deftest wallpaper-set/calls-wallpaper-set-function ()