diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-04-13 17:11:52 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-04-13 17:11:52 +0200 |
commit | 771ce2a2edff6f8e065b2757066778e3fb1b765a (patch) | |
tree | f5e2f2d4f4d28105e6ab83a068f1270e0ba2ae5a /tests/test_objects.py | |
parent | 95915ef9a9fbfd928469818c2d8cf2e502325226 (diff) |
Fix property name in test_objects
Diffstat (limited to 'tests/test_objects.py')
-rw-r--r-- | tests/test_objects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_objects.py b/tests/test_objects.py index 9646269..452b4e7 100644 --- a/tests/test_objects.py +++ b/tests/test_objects.py @@ -10,7 +10,7 @@ class TestObjects(unittest.TestCase): "id": "http://example.org/123456" }''') self.assertIsInstance(act, objects.ActivityObject) - self.assertEqual(act.id, 'http://example.org/123456') + self.assertEqual(act.ap_id, 'http://example.org/123456') def test_activity_to_json(self): act = objects.ActivityObject( |