summaryrefslogtreecommitdiff
path: root/tests/unittests
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unittests')
-rw-r--r--tests/unittests/test_handler/test_handler_apt_source.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unittests/test_handler/test_handler_apt_source.py b/tests/unittests/test_handler/test_handler_apt_source.py
index de009174..01d56559 100644
--- a/tests/unittests/test_handler/test_handler_apt_source.py
+++ b/tests/unittests/test_handler/test_handler_apt_source.py
@@ -173,7 +173,8 @@ class TestAptSourceConfig(TestCase):
with mock.patch.object(util, 'subp') as mockobj:
cc_apt_configure.add_sources([cfg], params)
- mockobj.assert_called_once_with(('apt-key', 'add', '-'), 'fakekey 4242')
+ mockobj.assert_called_once_with(('apt-key', 'add', '-'),
+ 'fakekey 4242')
# filename should be ignored on key only
self.assertFalse(os.path.isfile(self.aptlistfile))