diff options
author | Christian Ehrhardt <christian.ehrhardt@canonical.com> | 2016-06-09 10:01:57 +0200 |
---|---|---|
committer | Christian Ehrhardt <christian.ehrhardt@canonical.com> | 2016-06-09 10:01:57 +0200 |
commit | 108511d93b336e0b8e0807fbe876bad4cc07277f (patch) | |
tree | 2b39df8145a645b2ce2aa5156a0be39c786ce56d /tests | |
parent | 2d7f4673db55d5111d5e31e32eea3ca64c4e5f79 (diff) | |
download | vyos-cloud-init-108511d93b336e0b8e0807fbe876bad4cc07277f.tar.gz vyos-cloud-init-108511d93b336e0b8e0807fbe876bad4cc07277f.zip |
fix docstring for check connectivity
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unittests/test_handler/test_handler_apt_configure_sources_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/test_handler/test_handler_apt_configure_sources_list.py b/tests/unittests/test_handler/test_handler_apt_configure_sources_list.py index bedef51c..83e2e0cc 100644 --- a/tests/unittests/test_handler/test_handler_apt_configure_sources_list.py +++ b/tests/unittests/test_handler/test_handler_apt_configure_sources_list.py @@ -127,7 +127,7 @@ class TestAptSourceConfigSourceList(t_help.FilesystemMockingTestCase): @staticmethod def check_connectivity(target): - """try original gpg_recv_key, but allow fall back""" + """Check for required connectivity, if not skip this test""" testsock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) testsock.settimeout(10) try: |