aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/mastodon-http-tests.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/mastodon-http-tests.el b/test/mastodon-http-tests.el
index afc8fe3..55f6bf3 100644
--- a/test/mastodon-http-tests.el
+++ b/test/mastodon-http-tests.el
@@ -6,5 +6,6 @@
"Should make a `url-retrieve' of the given URL."
(let ((callback-double (lambda () "double")))
(with-mock
- (mock (url-retrieve "https://foo.bar/baz" 'callback-double))
- (mastodon-http--get "https://foo.bar/baz" 'callback-double))))
+ (mock (url-retrieve-synchronously "https://foo.bar/baz"))
+ (mock (mastodon--access-token) => "test-token")
+ (mastodon-http--get "https://foo.bar/baz"))))