diff options
Diffstat (limited to 'tests')
-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( |