diff options
author | Christian Ehrhardt <christian.ehrhardt@canonical.com> | 2016-05-11 10:57:33 +0200 |
---|---|---|
committer | Christian Ehrhardt <christian.ehrhardt@canonical.com> | 2016-05-11 10:57:33 +0200 |
commit | fef11c6a98ea74774aa84b3b14007b246a1c615e (patch) | |
tree | 9b0f0520b513279956d092891397340316dfadc8 | |
parent | 4c5d1966ead445dc6d110e9677902b95dfef2dc5 (diff) | |
download | vyos-cloud-init-fef11c6a98ea74774aa84b3b14007b246a1c615e.tar.gz vyos-cloud-init-fef11c6a98ea74774aa84b3b14007b246a1c615e.zip |
fix specification of keyid
-rw-r--r-- | tests/unittests/test_handler/test_handler_apt_source.py | 2 |
1 files changed, 1 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 29535bee..601504bd 100644 --- a/tests/unittests/test_handler/test_handler_apt_source.py +++ b/tests/unittests/test_handler/test_handler_apt_source.py @@ -118,7 +118,7 @@ class TestAptSourceConfig(TestCase): 'http://ppa.launchpad.net/' 'smoser/cloud-init-test/ubuntu' ' xenial main'), - 'keyid:': "03683F77", + 'keyid': "03683F77", 'filename': self.aptlistfile} with mock.patch.object(util, 'subp', return_value=('fakekey 1234', '')) as mockobj: |