From: F. Jason Park Date: Sat, 20 Feb 2021 14:50:30 +0000 (-0800) Subject: Mute noisy test fixture for socks.el X-Git-Tag: emacs-28.0.90~3629 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a6234bb5b4cfa9f073e324f01210adf368abc4f1;p=emacs.git Mute noisy test fixture for socks.el * test/lisp/net/socks-tests.el: (socks-tests-perform-hello-world-http-request): Bind 'inhibit-message' non-nil when in batch mode. (Bug#46342) --- diff --git a/test/lisp/net/socks-tests.el b/test/lisp/net/socks-tests.el index 9a2dcba9daf..71bdd74890a 100644 --- a/test/lisp/net/socks-tests.el +++ b/test/lisp/net/socks-tests.el @@ -173,6 +173,7 @@ Vectors must match verbatim. Strings are considered regex patterns.") (goto-char (point-min)) (should (search-forward "Hello World" nil t)) (setq done t))) + (inhibit-message noninteractive) (buf (url-http url cb '(nil))) (proc (get-buffer-process buf)) (attempts 10))