aboutsummaryrefslogtreecommitdiff
path: root/test/mastodon-http-tests.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus@riseup.net>2023-10-30 19:53:17 +0100
committermarty hiatt <martianhiatus@riseup.net>2023-10-30 19:53:17 +0100
commit40e8123b84ce54100a818e6b19507d3a492614f6 (patch)
tree118d1611d54917787fad8ddd36c54199be2dadf7 /test/mastodon-http-tests.el
parent87a6bc9d7d0026ba88a958ed9d3a9d074374b164 (diff)
parent1bfcb22043580d6bc4252300f55135aac8c50aea (diff)
Merge branch 'triage-response-data' into develop
Diffstat (limited to 'test/mastodon-http-tests.el')
-rw-r--r--test/mastodon-http-tests.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/mastodon-http-tests.el b/test/mastodon-http-tests.el
index b3a02bc..96f9304 100644
--- a/test/mastodon-http-tests.el
+++ b/test/mastodon-http-tests.el
@@ -62,11 +62,11 @@ Strict-Transport-Security: max-age=31536000
(let ((response-buffer
(get-buffer-create "mastodon-http--triage-buffer")))
(with-current-buffer response-buffer
- (erase-buffer)
+ (erase-buffer)
(insert mastodon-http--example-200))
(should (equal (mastodon-http--triage
response-buffer
- (lambda ()
+ (lambda (_)
(message "success call")))
"success call"))))
@@ -80,7 +80,7 @@ Strict-Transport-Security: max-age=31536000
(insert mastodon-http--example-400))
(should (equal (mastodon-http--triage
response-buffer
- (lambda ()
+ (lambda (_)
(message "success call")))
"Error 444: some unhappy complaint"))))