aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/src')
-rw-r--r--test/src/process-tests.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/process-tests.el b/test/src/process-tests.el
index 514bd04da4e..5dbf441e8c2 100644
--- a/test/src/process-tests.el
+++ b/test/src/process-tests.el
@@ -207,8 +207,8 @@
207 :sentinel #'ignore 207 :sentinel #'ignore
208 :noquery t 208 :noquery t
209 :connection-type 'pipe))) 209 :connection-type 'pipe)))
210 (while (process-live-p process) 210 (while (or (accept-process-output process)
211 (accept-process-output process)) 211 (process-live-p process)))
212 (should (eq (process-status process) 'exit)) 212 (should (eq (process-status process) 'exit))
213 (should (eq (process-exit-status process) 0)) 213 (should (eq (process-exit-status process) 0))
214 (should (process-tests--mixable (string-to-list (buffer-string)) 214 (should (process-tests--mixable (string-to-list (buffer-string))