Fix some more lint

This commit is contained in:
twangboy 2016-06-07 13:17:29 -06:00
parent 421dc97957
commit 9be45fe37a
2 changed files with 3 additions and 3 deletions

View file

@ -237,4 +237,4 @@ class WinDismTestCase(TestCase):
if __name__ == '__main__':
from integration import run_tests
run_tests(DISMTestCase, needs_daemon=False)
run_tests(WinDismTestCase, needs_daemon=False)

View file

@ -271,7 +271,7 @@ class WinDismTestCase(TestCase):
mock_removed = MagicMock(
side_effect=[['Feat1', 'Feat2'], ['Feat1']])
mock_remove= MagicMock(
mock_remove = MagicMock(
return_value={'retcode': 0})
with patch.dict(
@ -516,4 +516,4 @@ class WinDismTestCase(TestCase):
if __name__ == '__main__':
from integration import run_tests
run_tests(DISMTestCase, needs_daemon=False)
run_tests(WinDismTestCase, needs_daemon=False)