From 576eaef5c5545cde6664c923e1dc3673f70c8816 Mon Sep 17 00:00:00 2001 From: Zach Date: Thu, 8 Dec 2016 12:16:20 -0600 Subject: [PATCH] Fixed minor linting errors --- tests/test_acls.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_acls.py b/tests/test_acls.py index bc1bcd8..442a1d5 100644 --- a/tests/test_acls.py +++ b/tests/test_acls.py @@ -89,6 +89,7 @@ def test_get_makes_expected_api_request(client, acl_doc): assert output.id == expected_acl_object.id assert isinstance(output, Acl) + # Tests for delete. # @responses.activate def test_delete_makes_expected_api_request(client, acl): @@ -101,12 +102,13 @@ def test_delete_makes_expected_api_request(client, acl): responses.DELETE, expected_url, status=200, - json={'data':{}}, + json={'data': {}}, content_type="application/json", ) client.acls.delete(instance_name, acl.id) + ##################################### # Tests for Acls private interface. # #####################################