aboutsummaryrefslogtreecommitdiff
path: root/test/mastodon-auth-tests.el
diff options
context:
space:
mode:
authorAbhiseck Paira <abhiseckpaira@disroot.org>2022-02-23 14:24:37 +0530
committerAbhiseck Paira <abhiseckpaira@disroot.org>2022-02-23 14:24:37 +0530
commit0af5b491d14d521c03ebc48d82608afd65166e90 (patch)
tree3cc559ec30068b1ec739ca6af893c2ba377f5a12 /test/mastodon-auth-tests.el
parent77c173afc1f24fa371c41d0c59b94a8650eb4f61 (diff)
change '-' to '--' in between function and namespace names
mastodon.el currently follows the convention where all function names should have two dashes (not one dash) in between function and namespace names. Update all function names to follow this convention. See issue #205 and pull request #255
Diffstat (limited to 'test/mastodon-auth-tests.el')
-rw-r--r--test/mastodon-auth-tests.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mastodon-auth-tests.el b/test/mastodon-auth-tests.el
index 3ff745f..3bf65b2 100644
--- a/test/mastodon-auth-tests.el
+++ b/test/mastodon-auth-tests.el
@@ -56,8 +56,8 @@
(mastodon-auth--token-alist nil))
(with-mock
(mock (mastodon-auth--get-token) => '(:access_token "foobaz"))
- (mock (mastodon-client-store-access-token "foobaz"))
- (stub mastodon-client-make-user-active)
+ (mock (mastodon-client--store-access-token "foobaz"))
+ (stub mastodon-client--make-user-active)
(should
(string= (mastodon-auth--access-token)
"foobaz"))