Commit 68290f48 authored by Kushal Das's avatar Kushal Das

Removes unused varargs and varkwargs from assert_not_called().

parent 3ae4f992
......@@ -758,7 +758,7 @@ class NonCallableMock(Base):
else:
return _call
def assert_not_called(_mock_self, *args, **kwargs):
def assert_not_called(_mock_self):
"""assert that the mock was never called.
"""
self = _mock_self
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment