Made miscellaneous code cleanups

This commit is contained in:
Dmitry Dygalo 2016-07-21 10:28:40 +02:00 committed by Markus Holtermann
parent a05d86a69a
commit ca32979cdc
No known key found for this signature in database
GPG key ID: AFE79D68D41C7E39
6 changed files with 11 additions and 12 deletions

View file

@ -146,7 +146,7 @@ class CommandTests(SimpleTestCase):
self.counter = 0
def patched_check(self_, **kwargs):
self.counter = self.counter + 1
self.counter += 1
saved_check = BaseCommand.check
BaseCommand.check = patched_check