Rename new user to avoid duplication

This commit is contained in:
Mouse Reeve 2022-11-17 15:10:11 -08:00
parent 34f05c135b
commit 46b663b139

View file

@ -29,11 +29,11 @@ class User(TestCase):
bookwyrm_user=False, bookwyrm_user=False,
) )
self.another_user = models.User.objects.create_user( self.another_user = models.User.objects.create_user(
f"rat@{DOMAIN}", f"nutria@{DOMAIN}",
"rat@rat.rat", "nutria@nutria.nutria",
"ratword", "nutriaword",
local=True, local=True,
localname="rat", localname="nutria",
name="hi", name="hi",
bookwyrm_user=False, bookwyrm_user=False,
) )