From 0b1dcade3f544249cc01097da7b0ee8ad51ff5c8 Mon Sep 17 00:00:00 2001 From: Marnanel Thurman Date: Fri, 24 May 2019 20:43:44 +0100 Subject: [PATCH] ThingUser -> _create_person --- tests/test_embellish.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_embellish.py b/tests/test_embellish.py index 75e3592..41f658d 100644 --- a/tests/test_embellish.py +++ b/tests/test_embellish.py @@ -1,6 +1,6 @@ from django.test import TestCase from django_kepi.embellish import embellish -from things_for_testing.models import ThingUser +from . import _create_person import logging logger = logging.getLogger(name='django_kepi') @@ -34,7 +34,7 @@ class TestEmbellish(TestCase): # (plus "published") # (plus "conversation", wtf?) - user = ThingUser( + user = _create_person( name = 'Fred', url = 'https://example.com/users/fred', )