Fix tests
This commit is contained in:
parent
7a716db48a
commit
60e805ac2b
2 changed files with 5 additions and 5 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("https://your.domain.here/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