fixes outgoing tests

This commit is contained in:
Mouse Reeve 2021-01-04 11:44:52 -08:00
parent b960d8a40f
commit ef59682746

View file

@ -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)
'rat', 'rat@rat.com', 'password', local=True, localname='rat')
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)
'rat', 'rat@rat.com', 'password', local=True, localname='rat')
form = forms.CommentForm({
'content': 'hi @rat@example.com',
'user': self.local_user.id,