From ea85e3f6137e8c75e50d07c4511d294cfd9b23b6 Mon Sep 17 00:00:00 2001 From: Elena ``of Valhalla'' Grandi Date: Sat, 20 Jul 2019 18:07:42 +0200 Subject: Rename Object as APObject --- tests/test_objects.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/test_objects.py') diff --git a/tests/test_objects.py b/tests/test_objects.py index 4f27424..48dfaf1 100644 --- a/tests/test_objects.py +++ b/tests/test_objects.py @@ -3,19 +3,19 @@ import unittest from pyapd import objects -class TestObjects(unittest.TestCase): +class TestAPObjects(unittest.TestCase): def test_activity_from_json(self): - act = objects.Object.from_jsons('''{ + act = objects.APObject.from_jsons('''{ "id": "http://example.org/123456", "type": "object" }''') - self.assertIsInstance(act, objects.Object) + self.assertIsInstance(act, objects.APObject) self.assertEqual(act.ap_id, 'http://example.org/123456') self.assertEqual(act.ap_type, 'object') def test_activity_to_json(self): - act = objects.Object( + act = objects.APObject( ap_id="http://example.org/123456", ap_type="object", ) -- cgit v1.2.3