aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2019-04-27 17:19:01 +0200
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2019-04-27 17:19:01 +0200
commitffea1da6716b199b4254dc0cf019388f90c8db1a (patch)
treec2298ca928cc5457d8cecee387a1b068eba5db9a /tests
parente2da18c9f987d8b86f689f2ac716eb7ee41b17c5 (diff)
Fix json in tests
Diffstat (limited to 'tests')
-rw-r--r--tests/test_objects.py2
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')