Skip to content

Commit

Permalink
Fixing broken unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeyes committed Aug 20, 2015
1 parent 2e74433 commit f4a1cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def it_deletes_a_user(self):
with patch.object(Client, 'delete', return_value={}) as mock_method:
user = self.client.users.delete(user)
eq_(user.id, "1")
mock_method.assert_called_once_with('/users/1/')
mock_method.assert_called_once_with('/users/1/', {})

@istest
def it_can_use_user_create_for_convenience(self):
Expand Down

0 comments on commit f4a1cb4

Please sign in to comment.