We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffbc031 commit d02027cCopy full SHA for d02027c
1 file changed
tests/unit/helper.py
@@ -114,11 +114,6 @@ def patch_called_with(self, *args, **kwargs):
114
"""Use to assert patch was called with JSON."""
115
self.method_called_with('patch', args, kwargs)
116
117
- def delete_called_with(self, *args, **kwargs):
118
- """Use to assert delete was called."""
119
- self.method_called_with('delete', args, kwargs)
120
-
121
122
def post_called_with(self, *args, **kwargs):
123
"""Use to assert post was called with JSON."""
124
assert self.session.post.called is True
0 commit comments