We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e74433 commit f4a1cb4Copy full SHA for f4a1cb4
tests/unit/test_user.py
@@ -273,7 +273,7 @@ def it_deletes_a_user(self):
273
with patch.object(Client, 'delete', return_value={}) as mock_method:
274
user = self.client.users.delete(user)
275
eq_(user.id, "1")
276
- mock_method.assert_called_once_with('/users/1/')
+ mock_method.assert_called_once_with('/users/1/', {})
277
278
@istest
279
def it_can_use_user_create_for_convenience(self):
0 commit comments