aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJim Porter2024-03-07 12:19:28 -0800
committerJim Porter2024-03-07 12:19:28 -0800
commitaec0f610cb5aace1301cd230e57844a93d40cccd (patch)
tree233412c42be72360222997e75ec345097ceb2863 /test
parent90c2e287b7654c22b66012059c953c976c1596c1 (diff)
downloademacs-aec0f610cb5aace1301cd230e57844a93d40cccd.tar.gz
emacs-aec0f610cb5aace1301cd230e57844a93d40cccd.zip
; * test/lisp/net/eww-tests.el (eww-test--response-function): Fix typo.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/net/eww-tests.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lisp/net/eww-tests.el b/test/lisp/net/eww-tests.el
index ced84322e3a..bd00893d503 100644
--- a/test/lisp/net/eww-tests.el
+++ b/test/lisp/net/eww-tests.el
@@ -26,7 +26,8 @@
26 26
27(defvar eww-test--response-function (lambda (url) (concat "\n" url)) 27(defvar eww-test--response-function (lambda (url) (concat "\n" url))
28 "A function for returning a mock response for URL. 28 "A function for returning a mock response for URL.
29The default just returns an empty list of headers URL as the body.") 29The default just returns an empty list of headers and the URL as the
30body.")
30 31
31(defmacro eww-test--with-mock-retrieve (&rest body) 32(defmacro eww-test--with-mock-retrieve (&rest body)
32 "Evaluate BODY with a mock implementation of `eww-retrieve'. 33 "Evaluate BODY with a mock implementation of `eww-retrieve'.