Skip to content

Commit

Permalink
Fixed minor linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
zds97 committed Dec 8, 2016
1 parent 6f205b8 commit 576eaef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_acls.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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. #
#####################################
Expand Down

0 comments on commit 576eaef

Please sign in to comment.