Correct test structure
This commit is contained in:
parent
39b2f37947
commit
9093170660
2 changed files with 2 additions and 2 deletions
|
@ -429,7 +429,7 @@ class ActivitypubFields(TestCase):
|
|||
def test_image_serialize(self):
|
||||
"""make sure we're creating sensible image paths"""
|
||||
ValueMock = namedtuple("ValueMock", ("url"))
|
||||
value_mock = ValueMock("images/fish.jpg")
|
||||
value_mock = ValueMock("/images/fish.jpg")
|
||||
result = fields.image_serializer(value_mock, "hello")
|
||||
self.assertEqual(result.type, "Document")
|
||||
self.assertEqual(result.url, "https://your.domain.here/images/fish.jpg")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue