summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorF. Jason Park <jp@neverwas.me>2021-02-20 06:50:30 -0800
committerEli Zaretskii <eliz@gnu.org>2021-02-20 17:15:44 +0200
commita6234bb5b4cfa9f073e324f01210adf368abc4f1 (patch)
tree409769e74af153f614cdd33decc66b17c93a9bcf /test
parent496bed5cf4c9dc02f18741e3eacfaca78c373db6 (diff)
downloademacs-a6234bb5b4cfa9f073e324f01210adf368abc4f1.tar.gz
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)
Diffstat (limited to 'test')
-rw-r--r--test/lisp/net/socks-tests.el1
1 files changed, 1 insertions, 0 deletions
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))