From e87236d78f0ef8984f85483b19f49e44b78cddd8 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 3 Dec 2020 12:57:44 -0800 Subject: [PATCH] Remove unnecessary user create action --- bookwyrm/tests/activitypub/test_person.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bookwyrm/tests/activitypub/test_person.py b/bookwyrm/tests/activitypub/test_person.py index bec9e19bd..3e0d74e0c 100644 --- a/bookwyrm/tests/activitypub/test_person.py +++ b/bookwyrm/tests/activitypub/test_person.py @@ -2,14 +2,11 @@ import json import pathlib from django.test import TestCase -from bookwyrm import activitypub, models +from bookwyrm import activitypub class Person(TestCase): def setUp(self): - self.user = models.User.objects.create_user( - 'rat', 'rat@rat.com', 'ratword', - ) datafile = pathlib.Path(__file__).parent.joinpath( '../data/ap_user.json' )