diff --git a/tests/test_resource.py b/tests/test_resource.py index 559e9fa..2c6e72f 100644 --- a/tests/test_resource.py +++ b/tests/test_resource.py @@ -95,7 +95,11 @@ def test_bad_endpoint(self): @requests_mock.mock() def test_load_resource(self, m): m.register_uri('GET', 'http://duedil.io/v3/uk/test/12345.json', - json={"response": {'name': 'Duedil', 'id': 12345, 'category': 'thing'}}) + json={"response": { + 'name': 'Duedil', + 'id': 12345, + 'category': 'thing' + }}) res = TestAttrProResource(api_key=API_KEY, id=12345, load=True) self.assertEqual(res.category, 'thing')