From e7a20bd97cb3b7c26ab1ad6911c73598920910b7 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Mon, 4 Jan 2021 11:45:48 -0800 Subject: [PATCH] Revert "fixes outgoing tests" This reverts commit ef5968274682f66ed31b585a4a817700362aa8bb. --- bookwyrm/tests/test_outgoing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bookwyrm/tests/test_outgoing.py b/bookwyrm/tests/test_outgoing.py index aff902a51..5e585b1d2 100644 --- a/bookwyrm/tests/test_outgoing.py +++ b/bookwyrm/tests/test_outgoing.py @@ -398,7 +398,7 @@ class Outgoing(TestCase): def test_handle_status_mentions(self): ''' @mention a user in a post ''' user = models.User.objects.create_user( - 'rat', 'rat@rat.com', 'password', local=True, localname='rat') + 'rat', 'rat@rat.com', 'password', local=True) form = forms.CommentForm({ 'content': 'hi @rat', 'user': self.local_user.id, @@ -418,7 +418,7 @@ class Outgoing(TestCase): def test_handle_status_reply_with_mentions(self): ''' reply to a post with an @mention'ed user ''' user = models.User.objects.create_user( - 'rat', 'rat@rat.com', 'password', local=True, localname='rat') + 'rat', 'rat@rat.com', 'password', local=True) form = forms.CommentForm({ 'content': 'hi @rat@example.com', 'user': self.local_user.id,