Latest pycodestyle

This commit is contained in:
Anthony Sottile 2019-01-23 07:59:09 -08:00
parent 532ea9ccab
commit 50e7cc71b9
7 changed files with 21 additions and 4 deletions

View file

@ -23,7 +23,7 @@ def test_oserrors_cause_serial_fall_back():
with mock.patch('_multiprocessing.SemLock', side_effect=err):
manager = checker.Manager(style_guide, [], [])
with mock.patch.object(manager, 'run_serial') as serial:
manager.run()
manager.run()
assert serial.call_count == 1
assert manager.using_multiprocessing is False