Removes unused varargs and varkwargs from assert_not_called().

This commit is contained in:
Kushal Das 2014-04-17 01:54:07 +05:30
parent 3ae4f992d7
commit 68290f4895

View file

@ -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