diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-04-27 17:19:01 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-04-27 17:19:01 +0200 |
commit | ffea1da6716b199b4254dc0cf019388f90c8db1a (patch) | |
tree | c2298ca928cc5457d8cecee387a1b068eba5db9a /tests | |
parent | e2da18c9f987d8b86f689f2ac716eb7ee41b17c5 (diff) |
Fix json in tests
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 b21e307..63228f5 100644 --- a/tests/test_objects.py +++ b/tests/test_objects.py @@ -8,7 +8,7 @@ class TestObjects(unittest.TestCase): def test_activity_from_json(self): act = objects.Object.from_jsons('''{ "id": "http://example.org/123456", - "type": "object", + "type": "object" }''') self.assertIsInstance(act, objects.Object) self.assertEqual(act.ap_id, 'http://example.org/123456') |