From 1e4a661df8b3e07847e9d368f41fa775bf3442a7 Mon Sep 17 00:00:00 2001 From: Dmitry Osipov Date: Mon, 28 Nov 2022 15:33:37 +0100 Subject: Remove double white-space in the reply mode When you start a reply (to a local user or federated), there's one extra white-space after the list of mentioned users: `@user1@host.local @user2@host.federated__` (the underscores represent white-spaces). This PR removes the extra space. --- test/mastodon-toot-tests.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/mastodon-toot-tests.el b/test/mastodon-toot-tests.el index b88510c..5d4ef03 100644 --- a/test/mastodon-toot-tests.el +++ b/test/mastodon-toot-tests.el @@ -68,7 +68,7 @@ Even the local name \"local\" gets a domain name added." (mastodon-instance-url "https://local.social")) (should (string= (mastodon-toot--mentions mastodon-toot--multi-mention) - "@local@local.social @federated@federated.social @federated@federated.cafe ")))) + "@local@local.social @federated@federated.social @federated@federated.cafe")))) (ert-deftest mastodon-toot--multi-mentions-with-name () "Should build a correct mention string omitting self. @@ -80,7 +80,7 @@ mention string." (mastodon-instance-url "https://local.social")) (should (string= (mastodon-toot--mentions mastodon-toot--multi-mention) - "@federated@federated.social @federated@federated.cafe ")))) + "@federated@federated.social @federated@federated.cafe")))) (ert-deftest mastodon-toot--no-mention () "Should construct an empty mention string without mentions." -- cgit v1.2.3