diff options
author | Christian Ehrhardt <christian.ehrhardt@canonical.com> | 2016-06-06 14:48:21 +0200 |
---|---|---|
committer | Christian Ehrhardt <christian.ehrhardt@canonical.com> | 2016-06-06 14:48:21 +0200 |
commit | 1210eee8d6bd70817df10f2865af10c13553102b (patch) | |
tree | e857ae47fd63fbbd54a0020b9a7bd3ba357e35a1 /tests | |
parent | a3b234357ce1e1c7b8d9411d0928873752e2d107 (diff) | |
download | vyos-cloud-init-1210eee8d6bd70817df10f2865af10c13553102b.tar.gz vyos-cloud-init-1210eee8d6bd70817df10f2865af10c13553102b.zip |
fix alternate keyserver dns
The intentionally false name was meant for testing of abug, now we can and
should use a proper third party keyserver.
Diffstat (limited to 'tests')
-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 223af764..a184e7de 100644 --- a/tests/unittests/test_handler/test_handler_apt_source.py +++ b/tests/unittests/test_handler/test_handler_apt_source.py @@ -506,7 +506,7 @@ class TestAptSourceConfig(TestCase): """test_apt_src_longkeyid_ks_real - Test long keyid from other ks""" keyid = "B59D 5F15 97A5 04B7 E230 6DCA 0620 BBCF 0368 3F77" cfg = {'keyid': keyid, - 'keyserver': 'knorz.gnupg.net', + 'keyserver': 'keys.gnupg.net', 'filename': self.aptlistfile} self.apt_src_keyid_real(cfg, EXPECTEDKEY) |