From 1031646d59bb79733f060c3d12bd5c15c35aa864 Mon Sep 17 00:00:00 2001 From: Andrew Miller Date: Thu, 8 Jun 2017 22:23:30 +0100 Subject: [PATCH] PEP8 --- tests/test_resource.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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')